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:
parent
12492aae60
commit
a7b7c8f034
@ -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 }) {
|
||||
|
Loading…
Reference in New Issue
Block a user