Merge pull request #84 from devamitranjan/FIX_ISSUE_82

fix: increased the default number of pagesize
This commit is contained in:
Mohamed Marrouchi 2024-09-25 17:11:00 +01:00 committed by GitHub
commit 9f86b3073a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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,