aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pages/create-account/new-account.js
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2018-05-22 05:58:37 +0800
committerGitHub <noreply@github.com>2018-05-22 05:58:37 +0800
commit7a65c22a024c799d4a2c2fb7184f185633d5eaa8 (patch)
treea4cc398b10a0ce00cc41c4c3a86b54731d5d824c /ui/app/components/pages/create-account/new-account.js
parent59c9852999293adaeee4c036b64ca65182879e92 (diff)
parent793737f5bc22188b8c1ee154830aa7a6f0a3c04f (diff)
downloadtangerine-wallet-browser-7a65c22a024c799d4a2c2fb7184f185633d5eaa8.tar.gz
tangerine-wallet-browser-7a65c22a024c799d4a2c2fb7184f185633d5eaa8.tar.zst
tangerine-wallet-browser-7a65c22a024c799d4a2c2fb7184f185633d5eaa8.zip
Merge branch 'develop' into ci-publish-release
Diffstat (limited to 'ui/app/components/pages/create-account/new-account.js')
-rw-r--r--ui/app/components/pages/create-account/new-account.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/pages/create-account/new-account.js b/ui/app/components/pages/create-account/new-account.js
index 40fa584be..03a5ee72d 100644
--- a/ui/app/components/pages/create-account/new-account.js
+++ b/ui/app/components/pages/create-account/new-account.js
@@ -87,7 +87,7 @@ const mapDispatchToProps = dispatch => {
return dispatch(actions.addNewAccount())
.then(newAccountAddress => {
if (newAccountName) {
- dispatch(actions.saveAccountLabel(newAccountAddress, newAccountName))
+ dispatch(actions.setAccountLabel(newAccountAddress, newAccountName))
}
})
},