diff options
Diffstat (limited to 'ui/app/reducers')
-rw-r--r-- | ui/app/reducers/app.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ui/app/reducers/app.js b/ui/app/reducers/app.js index c69f0bae0..fb6767233 100644 --- a/ui/app/reducers/app.js +++ b/ui/app/reducers/app.js @@ -75,6 +75,15 @@ function reduceApp (state, action) { forgottenPassword: true, }) + case actions.FORGOT_PASSWORD: + return extend(appState, { + currentView: { + name: 'restoreVault', + }, + transForward: false, + forgottenPassword: true, + }) + case actions.SHOW_INIT_MENU: return extend(appState, { currentView: defaultView, |