diff options
Diffstat (limited to 'ui/app/components/token-balance.js')
-rw-r--r-- | ui/app/components/token-balance.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/token-balance.js b/ui/app/components/token-balance.js index 0757cc65c..d7fe168eb 100644 --- a/ui/app/components/token-balance.js +++ b/ui/app/components/token-balance.js @@ -90,9 +90,9 @@ TokenBalance.prototype.componentDidUpdate = function (nextProps) { } TokenBalance.prototype.updateBalance = function (tokens = []) { - const [{ string }] = tokens + const [{ string, symbol }] = tokens this.setState({ - balance: string, + balance: `${string} ${symbol}`, isLoading: false, }) } |