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

Remove unnecessary trailing comma.

This commit is contained in:
Dan 2017-09-25 20:35:14 -02:30 committed by Chi Kei Chan
parent 56697ea9a4
commit 5f6ec6aa98

View File

@ -124,7 +124,7 @@ SendTransactionScreen.prototype.renderFromInput = function (from, identities) {
}, },
onBlur: () => this.setErrorsFor('from'), onBlur: () => this.setErrorsFor('from'),
onFocus: event => { onFocus: event => {
this.clearErrorsFor('from'), this.clearErrorsFor('from')
this.state.newTx.from && event.target.select() this.state.newTx.from && event.target.select()
}, },
}), }),