fix: increased the default number of pagesize

This commit is contained in:
Amit Ranjan 2024-09-25 00:48:13 +05:30
parent e06dfd62de
commit f06599c4a0

View File

@ -34,7 +34,7 @@ export const usePagination = (
rowCount: number = -1,
initialPaginationState: GridPaginationModel = {
page: 0,
pageSize: 5,
pageSize: 10,
},
initialSortState?: GridSortModel,
hasCount: boolean = true,