aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/send.js
diff options
context:
space:
mode:
authorfrankiebee <frankie.diamond@gmail.com>2017-06-06 03:22:02 +0800
committerfrankiebee <frankie.diamond@gmail.com>2017-06-06 03:22:02 +0800
commit0f69a09823928ec6aaf5189cf4d4f50c52c9debb (patch)
treebd00dc5c9edb27665ff15b7e4283469c83fcd16e /ui/app/send.js
parent653319be1055b8ff0a36cb334c93ac7435f1fc5c (diff)
downloadtangerine-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.js2
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))
}