|
|
|
@ -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) { |
|
|
|
|
|
|
|
|
|