diff --git a/govtool/frontend/src/components/molecules/VotesSubmitted.tsx b/govtool/frontend/src/components/molecules/VotesSubmitted.tsx index 94390f9f..7731767c 100644 --- a/govtool/frontend/src/components/molecules/VotesSubmitted.tsx +++ b/govtool/frontend/src/components/molecules/VotesSubmitted.tsx @@ -150,7 +150,7 @@ const Vote = ({ type, vote, value }: VoteProps) => ( wordBreak: "break-all", }} > - {type !== "ccCommittee" ? value : `₳ ${correctAdaFormat(value)}`} + {type !== "ccCommittee" ? `₳ ${correctAdaFormat(value)}` : value} );