Browse Source

fix(lint)

renovate/lint-staged-8.x
Jack Mallers 7 years ago
parent
commit
8a40563314
  1. 2
      app/components/Wallet/Wallet.js

2
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

Loading…
Cancel
Save