Skip to content

Commit

Permalink
fix dropped validators filter logic
Browse files Browse the repository at this point in the history
  • Loading branch information
radumojic committed May 21, 2024
1 parent f29d576 commit 0db65f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Nodes/AuctionListTable/AuctionListTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export const AuctionListTable = ({

if (
isQualified === false &&
new BigNumber(validator.qualifiedAuctionValidators ?? 0).isZero()
new BigNumber(validator.droppedValidators ?? 0).isGreaterThan(0)
) {
return true;
}
Expand Down

0 comments on commit 0db65f8

Please sign in to comment.