aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
Diffstat (limited to 'ui')
-rw-r--r--ui/app/actions.js1
-rw-r--r--ui/app/reducers/app.js2
2 files changed, 2 insertions, 1 deletions
diff --git a/ui/app/actions.js b/ui/app/actions.js
index 072139e1a..9a8ba76d1 100644
--- a/ui/app/actions.js
+++ b/ui/app/actions.js
@@ -108,7 +108,6 @@ function tryUnlockMetamask(password) {
return (dispatch) => {
dispatch(this.unlockInProgress())
_accountManager.submitPassword(password, (err, selectedAccount) => {
- dispatch(this.hideLoadingIndication())
if (err) {
dispatch(this.unlockFailed())
} else {
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,
})