Skip to content

Commit 0e1bc68

Browse files
author
Gianmarco Manni
committed
fix pretiter
1 parent f7dccfe commit 0e1bc68

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Paging/Paging.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function Paging({
3838
const possibleItemsPerPage = possiblePageItemCounts ?? [25, 50, 100, 200];
3939

4040
if (!possibleItemsPerPage.includes(currentItemsPerPage)) {
41-
possibleItemsPerPage.concat(currentItemsPerPage).sort((a, b) => a-b);
41+
possibleItemsPerPage.concat(currentItemsPerPage).sort((a, b) => a - b);
4242
}
4343

4444
return (

0 commit comments

Comments
 (0)