1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

newui - unlock - dont catch errors unrelated to tryUnlockMetamask

This commit is contained in:
kumavis 2018-05-28 23:34:40 -07:00
parent 12492aae60
commit a7b7c8f034

View File

@ -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 }) {