aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2018-05-29 14:52:19 +0800
committerGitHub <noreply@github.com>2018-05-29 14:52:19 +0800
commitc665fe191de937170c181746b08efaac1eefaf88 (patch)
tree185cbdc80ad36f3652d02135f8c9012185e791cb
parent76c5851df135e1636f58545d2856cd74b8d5ef25 (diff)
parenta7b7c8f0349ac8db16f264268745fd4b14e89422 (diff)
downloadtangerine-wallet-browser-c665fe191de937170c181746b08efaac1eefaf88.tar.gz
tangerine-wallet-browser-c665fe191de937170c181746b08efaac1eefaf88.tar.zst
tangerine-wallet-browser-c665fe191de937170c181746b08efaac1eefaf88.zip
Merge pull request #4393 from MetaMask/newui-unlock-catch
newui - unlock - dont catch errors unrelated to tryUnlockMetamask
-rw-r--r--ui/app/components/pages/unlock-page/unlock-page.component.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/pages/unlock-page/unlock-page.component.js b/ui/app/components/pages/unlock-page/unlock-page.component.js
index a2f009d8f..b6384b32d 100644
--- a/ui/app/components/pages/unlock-page/unlock-page.component.js
+++ b/ui/app/components/pages/unlock-page/unlock-page.component.js
@@ -37,8 +37,8 @@ class UnlockPage extends Component {
tryUnlockMetamask (password) {
const { tryUnlockMetamask, history } = this.props
tryUnlockMetamask(password)
- .then(() => history.push(DEFAULT_ROUTE))
.catch(({ message }) => this.setState({ error: message }))
+ .then(() => history.push(DEFAULT_ROUTE))
}
handleSubmit (event) {
@@ -55,8 +55,8 @@ class UnlockPage extends Component {
this.setState({ error: null })
tryUnlockMetamask(password)
- .then(() => history.push(DEFAULT_ROUTE))
.catch(({ message }) => this.setState({ error: message }))
+ .then(() => history.push(DEFAULT_ROUTE))
}
handleInputChange ({ target }) {