diff options
author | brunobar79 <brunobar79@gmail.com> | 2018-07-13 01:19:51 +0800 |
---|---|---|
committer | brunobar79 <brunobar79@gmail.com> | 2018-07-13 01:19:51 +0800 |
commit | 4b528405eac7cea54c743307e6f577abd6ce9507 (patch) | |
tree | d92bd22a4699f80302e045337d3d07945096dec0 /ui/app/components/modals/confirm-remove-account/confirm-remove-account.container.js | |
parent | 07d8bfaec51a798e090bd2521debeddaf53bf2f9 (diff) | |
download | dexon-wallet-4b528405eac7cea54c743307e6f577abd6ce9507.tar.gz dexon-wallet-4b528405eac7cea54c743307e6f577abd6ce9507.tar.zst dexon-wallet-4b528405eac7cea54c743307e6f577abd6ce9507.zip |
catching up with develop
Diffstat (limited to 'ui/app/components/modals/confirm-remove-account/confirm-remove-account.container.js')
-rw-r--r-- | ui/app/components/modals/confirm-remove-account/confirm-remove-account.container.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/app/components/modals/confirm-remove-account/confirm-remove-account.container.js b/ui/app/components/modals/confirm-remove-account/confirm-remove-account.container.js index fcb149b3..4b194c99 100644 --- a/ui/app/components/modals/confirm-remove-account/confirm-remove-account.container.js +++ b/ui/app/components/modals/confirm-remove-account/confirm-remove-account.container.js @@ -5,7 +5,8 @@ const { hideModal, removeAccount } = require('../../../actions') const mapStateToProps = state => { return { - address: state.appState.modal.modalState.props.address, + identity: state.appState.modal.modalState.props.identity, + network: state.metamask.network, } } |