fix: remove unnecessary 'Type' column from inventory table

This commit is contained in:
Pattadon 2025-04-01 14:25:48 +07:00
parent a254185375
commit 338733b12b

View File

@ -71,7 +71,6 @@ export default function InventoryPage() {
const columns = [ const columns = [
{ accessorKey: "name", header: "Name" }, { accessorKey: "name", header: "Name" },
{ accessorKey: "category", header: "Category" }, { accessorKey: "category", header: "Category" },
{ accessorKey: "type", header: "Type" },
{ accessorKey: "quantity", header: "Quantity" }, { accessorKey: "quantity", header: "Quantity" },
{ accessorKey: "unit", header: "Unit" }, { accessorKey: "unit", header: "Unit" },
{ accessorKey: "lastUpdated", header: "Last Updated" }, { accessorKey: "lastUpdated", header: "Last Updated" },