We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7dccfe commit 0e1bc68Copy full SHA for 0e1bc68
1 file changed
src/Paging/Paging.tsx
@@ -38,7 +38,7 @@ function Paging({
38
const possibleItemsPerPage = possiblePageItemCounts ?? [25, 50, 100, 200];
39
40
if (!possibleItemsPerPage.includes(currentItemsPerPage)) {
41
- possibleItemsPerPage.concat(currentItemsPerPage).sort((a, b) => a-b);
+ possibleItemsPerPage.concat(currentItemsPerPage).sort((a, b) => a - b);
42
}
43
44
return (
0 commit comments