From 9a6cec65cd74168a1bbe3dc8fc865db71958f87b Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Mon, 21 Apr 2025 21:04:22 -0500 Subject: [PATCH] refactor(inventory card): changed to 500 by default so we can scroll --- frontend/src/utils/tableData/InventoryCards/inventoryData.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/utils/tableData/InventoryCards/inventoryData.tsx b/frontend/src/utils/tableData/InventoryCards/inventoryData.tsx index 31248a8..964a51a 100644 --- a/frontend/src/utils/tableData/InventoryCards/inventoryData.tsx +++ b/frontend/src/utils/tableData/InventoryCards/inventoryData.tsx @@ -39,7 +39,7 @@ export function InvTable({ const [sorting, setSorting] = useState([]); const [pagination, setPagination] = useState({ pageIndex: 0, //initial page index - pageSize: 5, //default page size + pageSize: 500, //default page size }); const table = useReactTable({ data,