diff --git a/app/components/Wallet/Wallet.js b/app/components/Wallet/Wallet.js index 71e34d0d..280a2c9c 100644 --- a/app/components/Wallet/Wallet.js +++ b/app/components/Wallet/Wallet.js @@ -32,7 +32,7 @@ class Wallet extends Component { } = this.props const { modalOpen, qrCodeType } = this.state - const usdAmount = btc.satoshisToUsd((parseInt(balance.walletBalance) + parseInt(balance.channelBalance)), currentTicker.price_usd) + const usdAmount = btc.satoshisToUsd((parseInt(balance.walletBalance, 10) + parseInt(balance.channelBalance, 10)), currentTicker.price_usd) const changeQrCode = () => { const qrCodeNum = this.state.qrCodeType === 1 ? 2 : 1