From 338733b12be0314f5a9472145ff014a864f7ff0a Mon Sep 17 00:00:00 2001 From: Pattadon Date: Tue, 1 Apr 2025 14:25:48 +0700 Subject: [PATCH] fix: remove unnecessary 'Type' column from inventory table --- frontend/app/(sidebar)/inventory/page.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/app/(sidebar)/inventory/page.tsx b/frontend/app/(sidebar)/inventory/page.tsx index f2777c3..fdee0a0 100644 --- a/frontend/app/(sidebar)/inventory/page.tsx +++ b/frontend/app/(sidebar)/inventory/page.tsx @@ -71,7 +71,6 @@ export default function InventoryPage() { const columns = [ { accessorKey: "name", header: "Name" }, { accessorKey: "category", header: "Category" }, - { accessorKey: "type", header: "Type" }, { accessorKey: "quantity", header: "Quantity" }, { accessorKey: "unit", header: "Unit" }, { accessorKey: "lastUpdated", header: "Last Updated" },