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

Merge pull request #4393 from MetaMask/newui-unlock-catch

newui - unlock - dont catch errors unrelated to tryUnlockMetamask
This commit is contained in:
kumavis 2018-05-28 23:52:19 -07:00 committed by GitHub
commit c665fe191d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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