From ba383c96657e5ad55b17394af26917839ce4feb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Iv=C3=A1n=20Cuende?= Date: Tue, 10 Sep 2019 16:03:08 +0200 Subject: [PATCH] Voting copy fix (#984) * Small typo fix in Voting * Changed vote action copy * Change voting action copy * Fixes suggestions --- apps/voting/app/src/components/VoteActions.js | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/apps/voting/app/src/components/VoteActions.js b/apps/voting/app/src/components/VoteActions.js index 27f2200667..168c952cc9 100644 --- a/apps/voting/app/src/components/VoteActions.js +++ b/apps/voting/app/src/components/VoteActions.js @@ -223,11 +223,20 @@ const TokenReference = ({ {userBalance} {tokenSymbol} {' '} - due to snapshot taken at block{' '} + due to the snapshot taken at block{' '} {snapshotBlock}{' '} - at {formatDate(startDate)}. - Yout current balance is{' '} - {userBalanceNow} {tokenSymbol}. + at {formatDate(startDate)}.{' '} + {userBalance !== userBalanceNow ? ( + + Your current balance is{' '} + + {userBalanceNow} {tokenSymbol} + + ) + + ) : ( + '' + )} )