Skip to content

Commit

Permalink
Voting copy fix (#984)
Browse files Browse the repository at this point in the history
* Small typo fix in Voting

* Changed vote action copy

* Change voting action copy

* Fixes suggestions
  • Loading branch information
luisivan authored Sep 10, 2019
1 parent dd4e47d commit ba383c9
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions apps/voting/app/src/components/VoteActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,11 +223,20 @@ const TokenReference = ({
<strong>
{userBalance} {tokenSymbol}
</strong>{' '}
due to snapshot taken at block{' '}
due to the snapshot taken at block{' '}
<strong>{snapshotBlock}</strong>{' '}
at <strong>{formatDate(startDate)}</strong>.
Yout current balance is{' '}
<strong>{userBalanceNow} {tokenSymbol}</strong>.
at <strong>{formatDate(startDate)}</strong>.{' '}
{userBalance !== userBalanceNow ? (
<span>
Your current balance is{' '}
<strong>
{userBalanceNow} {tokenSymbol}
</strong>
)
</span>
) : (
''
)}
</Info>
)

Expand Down

0 comments on commit ba383c9

Please sign in to comment.