Merge branch 'develop' of github.com:MetaMask/metamask-extension into v4.7.3

feature/default_network_editable
kumavis 7 years ago
commit 98b0c160c9
  1. 2
      ui/app/components/modals/edit-account-name-modal.js
  2. 2
      ui/app/components/modals/hide-token-confirmation-modal.js
  3. 2
      ui/app/components/modals/shapeshift-deposit-tx-modal.js

@ -9,7 +9,7 @@ const { getSelectedAccount } = require('../../selectors')
function mapStateToProps (state) {
return {
selectedAccount: getSelectedAccount(state),
identity: state.appState.modal.modalState.identity,
identity: state.appState.modal.modalState.props.identity,
}
}

@ -9,7 +9,7 @@ const Identicon = require('../identicon')
function mapStateToProps (state) {
return {
network: state.metamask.network,
token: state.appState.modal.modalState.token,
token: state.appState.modal.modalState.props.token,
}
}

@ -8,7 +8,7 @@ const AccountModalContainer = require('./account-modal-container')
function mapStateToProps (state) {
return {
Qr: state.appState.modal.modalState.Qr,
Qr: state.appState.modal.modalState.props.Qr,
}
}

Loading…
Cancel
Save