diff --git a/src/components/lists/ItemList.tsx b/src/components/lists/ItemList.tsx index 3d097b7..57cdf6c 100644 --- a/src/components/lists/ItemList.tsx +++ b/src/components/lists/ItemList.tsx @@ -1,6 +1,6 @@ "use client"; -import { deleteItems } from "@/actions/deleteItem"; +// import { deleteItems } from "@/actions/deleteItem"; import { PencilIcon } from "lucide-react"; import Link from "next/link"; import { Button } from "../ui/button"; @@ -22,7 +22,7 @@ export default function ItemList({ items, type }: { items: ItemProps[], type: st // }, []); const handleDelete = (id: string) => { - deleteItems(id, type); + // deleteItems(id, type); }; // if (!isMounted) return null;