diff options
author | Renier Oosthuizen <oosthuizen.renier@gmail.com> | 2018-01-03 03:07:48 +0800 |
---|---|---|
committer | Renier Oosthuizen <oosthuizen.renier@gmail.com> | 2018-01-03 03:07:48 +0800 |
commit | 4a598fc7ac59ccf4c6cc0290956bb4985fafa8a5 (patch) | |
tree | 472ab787fe496f21319ef096801129209ae4bcb5 /ui/app | |
parent | 849b8fab93977fb986479b7ca278844286d5b999 (diff) | |
download | tangerine-wallet-browser-4a598fc7ac59ccf4c6cc0290956bb4985fafa8a5.tar tangerine-wallet-browser-4a598fc7ac59ccf4c6cc0290956bb4985fafa8a5.tar.gz tangerine-wallet-browser-4a598fc7ac59ccf4c6cc0290956bb4985fafa8a5.tar.bz2 tangerine-wallet-browser-4a598fc7ac59ccf4c6cc0290956bb4985fafa8a5.tar.lz tangerine-wallet-browser-4a598fc7ac59ccf4c6cc0290956bb4985fafa8a5.tar.xz tangerine-wallet-browser-4a598fc7ac59ccf4c6cc0290956bb4985fafa8a5.tar.zst tangerine-wallet-browser-4a598fc7ac59ccf4c6cc0290956bb4985fafa8a5.zip |
Fixes #2834
Diffstat (limited to 'ui/app')
-rw-r--r-- | ui/app/app.js | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/ui/app/app.js b/ui/app/app.js index bd0ccb0a2..2a2438d97 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -460,11 +460,6 @@ App.prototype.renderPrimary = function () { }) } - if (props.seedWords) { - log.debug('rendering seed words') - return h(HDCreateVaultComplete, {key: 'HDCreateVaultComplete'}) - } - // show initialize screen if (!props.isInitialized || props.forgottenPassword) { // show current view @@ -499,6 +494,12 @@ App.prototype.renderPrimary = function () { } } + //Show seed words screen + if (props.seedWords) { + log.debug('rendering seed words') + return h(HDCreateVaultComplete, {key: 'HDCreateVaultComplete'}) + } + // show current view switch (props.currentView.name) { |