Browse Source

Merge pull request #130 from LN-Zap/fix/wallet-loading

fix(wallet-loading): replace loading... copy with our bolt loader
renovate/lint-staged-8.x
JimmyMow 7 years ago
committed by GitHub
parent
commit
024ef21158
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/routes/activity/components/Activity.js

2
app/routes/activity/components/Activity.js

@ -61,7 +61,7 @@ class Activity extends Component {
newAddress
} = this.props
if (invoiceLoading || paymentLoading) { return <div>Loading...</div> }
if (invoiceLoading || paymentLoading) { return <LoadingBolt /> }
if (balance.balanceLoading) { return <LoadingBolt /> }
if (!balance.channelBalance || !balance.walletBalance) { return <LoadingBolt /> }

Loading…
Cancel
Save