aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/token-balance.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/token-balance.js')
-rw-r--r--ui/app/components/token-balance.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/app/components/token-balance.js b/ui/app/components/token-balance.js
index b4a249300..3a923eb9d 100644
--- a/ui/app/components/token-balance.js
+++ b/ui/app/components/token-balance.js
@@ -93,8 +93,10 @@ TokenBalance.prototype.componentDidUpdate = function (nextProps) {
TokenBalance.prototype.updateBalance = function (tokens = []) {
const [{ string, symbol }] = tokens
+ const { balanceOnly } = this.props
+
this.setState({
- balance: `${string} ${symbol}`,
+ balance: balanceOnly ? string : `${string} ${symbol}`,
isLoading: false,
})
}