Skip to content

Commit

Permalink
fix: update no lock check
Browse files Browse the repository at this point in the history
  • Loading branch information
denviljclarke committed Oct 28, 2024
1 parent 290feac commit 0eccdcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/locks-list/locks-list.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const LocksList = () => {
const { lock, unlockedMento, hasLock } = useLockInfo(address);
const { veMentoBalance } = useTokens();

const noVotingPower = veMentoBalance.value < BigInt(0);
const noVotingPower = veMentoBalance.value === BigInt(0);

if (!address) {
return (
Expand Down

0 comments on commit 0eccdcc

Please sign in to comment.