From f7f4cc7d7d61143388cd23da4f51d74519410750 Mon Sep 17 00:00:00 2001 From: Citali Date: Fri, 2 Jan 2026 00:06:23 +0100 Subject: [PATCH] Refactor requests, refactor users, add home dashboard --- src/components/lists/ItemList.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;