From 5f6ec6aa982101bed57d9a8766330af71a274183 Mon Sep 17 00:00:00 2001 From: Dan Date: Mon, 25 Sep 2017 20:35:14 -0230 Subject: Remove unnecessary trailing comma. --- ui/app/send.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/send.js b/ui/app/send.js index ac1ee0d84..6c701f982 100644 --- a/ui/app/send.js +++ b/ui/app/send.js @@ -124,7 +124,7 @@ SendTransactionScreen.prototype.renderFromInput = function (from, identities) { }, onBlur: () => this.setErrorsFor('from'), onFocus: event => { - this.clearErrorsFor('from'), + this.clearErrorsFor('from') this.state.newTx.from && event.target.select() }, }), -- cgit