Skip to content

Commit

Permalink
Merge pull request #420 from blockchain/feature/fix-wallet-welcome
Browse files Browse the repository at this point in the history
Fix new wallet welcome messages
  • Loading branch information
plondon committed May 15, 2018
2 parents 554ad1d + b625f3e commit 852b6c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class BitcoinCashWelcomeContainer extends React.PureComponent {
}

const mapStateToProps = state => ({
ethBalanceR: selectors.core.data.ether.getBalance(state),
ethBalanceR: selectors.core.data.ethereum.getBalance(state),
btcBalanceR: selectors.core.data.bitcoin.getBalance(state),
showBitcoinCashWelcome: selectors.preferences.getShowBitcoinCashWelcome(state)
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class BitcoinWelcomeContainer extends React.PureComponent {
const mapStateToProps = state => ({
canBuy: selectors.exchange.getCanTrade(state, 'Buy'),
bchBalanceR: selectors.core.data.bch.getBalance(state),
ethBalanceR: selectors.core.data.ether.getBalance(state),
ethBalanceR: selectors.core.data.ethereum.getBalance(state),
showBitcoinWelcome: selectors.preferences.getShowBitcoinWelcome(state)
})

Expand Down

0 comments on commit 852b6c1

Please sign in to comment.