From d929f8053202dabb866f5aea3fc0238593c474ce Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Wed, 4 May 2016 20:37:39 -0700 Subject: Fix routing bug Where sometimes the account list was shown when first unlocking, after momentarily showing the detail panel. --- ui/app/reducers/app.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ui/app/reducers') diff --git a/ui/app/reducers/app.js b/ui/app/reducers/app.js index 14f92a8c5..d958b6730 100644 --- a/ui/app/reducers/app.js +++ b/ui/app/reducers/app.js @@ -109,7 +109,9 @@ function reduceApp(state, action) { case actions.UNLOCK_METAMASK: return extend(appState, { currentView: {}, + detailView: {}, transForward: true, + isLoading: false, warning: null, }) -- cgit