From 17600d12aaabb0bdd1fa7db0851e701c09d26321 Mon Sep 17 00:00:00 2001 From: Bram Suurd <78373894+BramSuurdje@users.noreply.github.com> Date: Wed, 6 Nov 2024 22:56:02 +0100 Subject: [PATCH] Remove commented-out import for unused Category type in CommandMenu component --- frontend/src/components/CommandMenu.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/CommandMenu.tsx b/frontend/src/components/CommandMenu.tsx index e86706ff..cc6d690f 100644 --- a/frontend/src/components/CommandMenu.tsx +++ b/frontend/src/components/CommandMenu.tsx @@ -7,7 +7,7 @@ import { CommandList, } from "@/components/ui/command"; import { fetchCategories } from "@/lib/data"; -import { Category } from "@/lib/types"; // Removed unused Script import +import { Category } from "@/lib/types"; import { cn } from "@/lib/utils"; import Image from "next/image"; import { useRouter } from "next/navigation";