Add action to hide loading indication on an incorrect pw.

This commit is contained in:
Kevin Serrano 2017-03-21 06:57:49 -07:00
parent 0c82c520fe
commit 889132b16c
1 changed files with 5 additions and 2 deletions

View File

@ -269,7 +269,10 @@ function requestRevealSeed (password) {
dispatch(actions.showLoadingIndication())
log.debug(`background.submitPassword`)
background.submitPassword(password, (err) => {
if (err) return dispatch(actions.displayWarning(err.message))
if (err) {
dispatch(actions.hideLoadingIndication())
return dispatch(actions.displayWarning(err.message))
}
log.debug(`background.placeSeedWords`)
background.placeSeedWords((err) => {
if (err) return dispatch(actions.displayWarning(err.message))
@ -698,7 +701,7 @@ function setRpcTarget (newRpc) {
}
}
// Calls the addressBookController to add a new address.
// Calls the addressBookController to add a new address.
function addToAddressBook (recipient, nickname) {
log.debug(`background.addToAddressBook`)
return (dispatch) => {