Skip to content

Commit

Permalink
Merge pull request #2142 from IntersectMBO/fix/2085-spos-vote-count-s…
Browse files Browse the repository at this point in the history
…hown-instead-of-voting-power

fix: correct DRep votes ada symbol
  • Loading branch information
MSzalowski authored Oct 15, 2024
2 parents 56d4ea5 + 12e82ca commit 8616572
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ const Vote = ({ type, vote, value }: VoteProps) => (
wordBreak: "break-all",
}}
>
{type !== "ccCommittee" ? value : `₳ ${correctAdaFormat(value)}`}
{type !== "ccCommittee" ? `₳ ${correctAdaFormat(value)}` : value}
</Typography>
</Box>
);

0 comments on commit 8616572

Please sign in to comment.