Remove commented-out import for unused Category type in CommandMenu component

This commit is contained in:
Bram Suurd 2024-11-06 22:56:02 +01:00
parent 810d63ea4d
commit 17600d12aa

View File

@ -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";