aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/modals/new-account-modal.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2017-09-23 05:00:00 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-09-23 05:35:51 +0800
commit13f22ff6b087f3865f84a0672a9013ada88be61a (patch)
tree0381a643abb923c28a649f079a6e914aecf0dadf /ui/app/components/modals/new-account-modal.js
parenta1d72a59fe5b03363820d6e1ac2c383ec15ccbcb (diff)
downloadtangerine-wallet-browser-13f22ff6b087f3865f84a0672a9013ada88be61a.tar
tangerine-wallet-browser-13f22ff6b087f3865f84a0672a9013ada88be61a.tar.gz
tangerine-wallet-browser-13f22ff6b087f3865f84a0672a9013ada88be61a.tar.bz2
tangerine-wallet-browser-13f22ff6b087f3865f84a0672a9013ada88be61a.tar.lz
tangerine-wallet-browser-13f22ff6b087f3865f84a0672a9013ada88be61a.tar.xz
tangerine-wallet-browser-13f22ff6b087f3865f84a0672a9013ada88be61a.tar.zst
tangerine-wallet-browser-13f22ff6b087f3865f84a0672a9013ada88be61a.zip
get identities from getState() instead of passing from caller, only set new account label if label set.
Diffstat (limited to 'ui/app/components/modals/new-account-modal.js')
-rw-r--r--ui/app/components/modals/new-account-modal.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/ui/app/components/modals/new-account-modal.js b/ui/app/components/modals/new-account-modal.js
index 1adc9e7c7..25beb6745 100644
--- a/ui/app/components/modals/new-account-modal.js
+++ b/ui/app/components/modals/new-account-modal.js
@@ -8,7 +8,6 @@ function mapStateToProps (state) {
return {
network: state.metamask.network,
address: state.metamask.selectedAddress,
- identities: state.metamask.identities,
}
}
@@ -20,10 +19,12 @@ function mapDispatchToProps (dispatch) {
hideModal: () => {
dispatch(actions.hideModal())
},
- createAccount: (identities, newAccountName) => {
- dispatch(actions.addNewAccount(identities))
+ createAccount: (newAccountName) => {
+ dispatch(actions.addNewAccount())
.then((newAccountAddress) => {
- dispatch(actions.saveAccountLabel(newAccountAddress, newAccountName))
+ if (newAccountName) {
+ dispatch(actions.saveAccountLabel(newAccountAddress, newAccountName))
+ }
dispatch(actions.hideModal())
})
},
@@ -42,7 +43,6 @@ function NewAccountModal () {
module.exports = connect(mapStateToProps, mapDispatchToProps)(NewAccountModal)
NewAccountModal.prototype.render = function () {
- const { identities } = this.props
const { newAccountName } = this.state
return h('div', {}, [
@@ -77,7 +77,7 @@ NewAccountModal.prototype.render = function () {
h('div.new-account-modal-content.button', {}, [
h('button.btn-clear', {
- onClick: () => this.props.createAccount(identities, newAccountName)
+ onClick: () => this.props.createAccount(newAccountName)
}, [
'SAVE',
]),