From 12e82ca3ea82e5d1e6fcdf6897cac01ca16c23d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Sza=C5=82owski?= Date: Tue, 15 Oct 2024 07:00:32 +0200 Subject: [PATCH] fix: correct DRep votes ada symbol --- govtool/frontend/src/components/molecules/VotesSubmitted.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} );