Skip to content

Commit

Permalink
fix: only show 0 VP message if every strategy has 0 VP
Browse files Browse the repository at this point in the history
  • Loading branch information
Sekhmet committed Dec 16, 2024
1 parent 576170f commit a803f3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/ui/src/views/Proposal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ watchEffect(() => {
<a
v-if="
votingPower?.status === 'success' &&
votingPower.votingPowers.some(v => v.value > 0n)
votingPower.votingPowers.every(v => v.value === 0n)
"
:href="`${HELPDESK_URL}/en/articles/9566904-why-do-i-have-0-voting-power`"
target="_blank"
Expand Down

0 comments on commit a803f3f

Please sign in to comment.