diff --git a/app/components/Contacts/Network.scss b/app/components/Contacts/Network.scss index 6a00ec4a..b64e93a7 100644 --- a/app/components/Contacts/Network.scss +++ b/app/components/Contacts/Network.scss @@ -147,6 +147,7 @@ width: calc(100% - 40px); padding: 10px 20px; border-top: 1px solid $darkestgrey; + background: #2D303B; .input { display: inline-block; diff --git a/app/components/Wallet/Wallet.js b/app/components/Wallet/Wallet.js index 50f5af84..71e34d0d 100644 --- a/app/components/Wallet/Wallet.js +++ b/app/components/Wallet/Wallet.js @@ -32,8 +32,7 @@ class Wallet extends Component { } = this.props const { modalOpen, qrCodeType } = this.state - const usdAmount = btc.satoshisToUsd(balance.channelBalance, currentTicker.price_usd) - console.log('usdAmount: ', usdAmount) + const usdAmount = btc.satoshisToUsd((parseInt(balance.walletBalance) + parseInt(balance.channelBalance)), currentTicker.price_usd) const changeQrCode = () => { const qrCodeNum = this.state.qrCodeType === 1 ? 2 : 1