From e5034ade243d1bf2258f39aabcfe09b9ac602924 Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Wed, 18 May 2016 23:50:15 -0700 Subject: [PATCH] Make accounts page transition forward from account detail --- ui/app/reducers/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/app/reducers/app.js b/ui/app/reducers/app.js index 2cdbaf6f3..1c0154cd5 100644 --- a/ui/app/reducers/app.js +++ b/ui/app/reducers/app.js @@ -165,7 +165,7 @@ function reduceApp(state, action) { accountExport: 'none', privateKey: '', }, - transForward: true, + transForward: false, }) case actions.BACK_TO_ACCOUNT_DETAIL: @@ -188,7 +188,7 @@ function reduceApp(state, action) { currentView: { name: seedWords ? 'createVaultComplete' : 'accounts', }, - transForward: appState.currentView.name == 'locked', + transForward: true, isLoading: false, warning: null, })