Skip to content

Commit

Permalink
fix: sorting len
Browse files Browse the repository at this point in the history
  • Loading branch information
Majorfi committed Nov 10, 2024
1 parent 2829943 commit 7f51e54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/vaults/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ function ListOfVaults(): ReactElement {

const {currentItems, paginationProps} = usePagination<TYDaemonVault>({
data: filteredByChains,
itemsPerPage: sortedVaultsToDisplay.length || 50
itemsPerPage: 50
});

return (
Expand Down

0 comments on commit 7f51e54

Please sign in to comment.