Skip to content

Commit

Permalink
feat: MET-1963 fix page size
Browse files Browse the repository at this point in the history
  • Loading branch information
Sotatek-TaiTruong committed Mar 28, 2024
1 parent e0db822 commit bb03ac2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/components/GovernanceVotes/index.tsx
Expand Up @@ -205,6 +205,7 @@ const DelegationGovernanceVotes: React.FC<DelegationGovernanceVotesProps> = ({ h
<FooterTable
pagination={{
size: Number(query.voteSize || 6),
page: query.page ? Number(query.page || 1) - 1 : 0,
total,
onChange: (page, size) => history.replace({ search: stringify({ ...query, page, voteSize: size }) })
}}
Expand Down

0 comments on commit bb03ac2

Please sign in to comment.