diff options
author | frankiebee <frankie.diamond@gmail.com> | 2017-06-06 03:22:02 +0800 |
---|---|---|
committer | frankiebee <frankie.diamond@gmail.com> | 2017-06-06 03:22:02 +0800 |
commit | 0f69a09823928ec6aaf5189cf4d4f50c52c9debb (patch) | |
tree | bd00dc5c9edb27665ff15b7e4283469c83fcd16e /ui/app/send.js | |
parent | 653319be1055b8ff0a36cb334c93ac7435f1fc5c (diff) | |
download | tangerine-wallet-browser-0f69a09823928ec6aaf5189cf4d4f50c52c9debb.tar tangerine-wallet-browser-0f69a09823928ec6aaf5189cf4d4f50c52c9debb.tar.gz tangerine-wallet-browser-0f69a09823928ec6aaf5189cf4d4f50c52c9debb.tar.bz2 tangerine-wallet-browser-0f69a09823928ec6aaf5189cf4d4f50c52c9debb.tar.lz tangerine-wallet-browser-0f69a09823928ec6aaf5189cf4d4f50c52c9debb.tar.xz tangerine-wallet-browser-0f69a09823928ec6aaf5189cf4d4f50c52c9debb.tar.zst tangerine-wallet-browser-0f69a09823928ec6aaf5189cf4d4f50c52c9debb.zip |
Fix linting error
Diffstat (limited to 'ui/app/send.js')
-rw-r--r-- | ui/app/send.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/send.js b/ui/app/send.js index 75a600dee..fd6994145 100644 --- a/ui/app/send.js +++ b/ui/app/send.js @@ -262,7 +262,7 @@ SendTransactionScreen.prototype.onSubmit = function () { return this.props.dispatch(actions.displayWarning(message)) } - if ((!util.isValidAddress(recipient) && !txData) || (!recipient && !txData) { + if ((!util.isValidAddress(recipient) && !txData) || (!recipient && !txData)) { message = 'Recipient address is invalid.' return this.props.dispatch(actions.displayWarning(message)) } |