Skip to content

Commit

Permalink
Merge pull request #453 from ourzora/fix-proposal-votes-calculations
Browse files Browse the repository at this point in the history
Fix proposal votes calculations
  • Loading branch information
neokry committed Mar 25, 2024
2 parents 341237b + a56ba1b commit 5863498
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const ProposalVotes: React.FC<ProposalVotesProps> = ({ proposal }) => {
tokenContract: addresses.token?.toLowerCase(),
mintedAt_lt: proposal.timeCreated,
},
orderBy: Token_OrderBy.MintedAt,
orderBy: Token_OrderBy.TokenId,
orderDirection: OrderDirection.Desc,
first: 1,
})
Expand Down

0 comments on commit 5863498

Please sign in to comment.