refactor(inventory card): changed to 500 by default so we can scroll

This commit is contained in:
2025-04-21 21:04:22 -05:00
parent 92dc3855b9
commit 9a6cec65cd

View File

@@ -39,7 +39,7 @@ export function InvTable<TData, TValue>({
const [sorting, setSorting] = useState<SortingState>([]);
const [pagination, setPagination] = useState({
pageIndex: 0, //initial page index
pageSize: 5, //default page size
pageSize: 500, //default page size
});
const table = useReactTable({
data,