Skip to content

Commit

Permalink
Merge pull request #2143 from IntersectMBO/develop
Browse files Browse the repository at this point in the history
fix: correct DRep votes ada symbol
  • Loading branch information
MSzalowski authored Oct 15, 2024
2 parents ee64735 + 8616572 commit 1229fc2
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 1229fc2

Please sign in to comment.