aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/pages/send/send-footer/send-footer.utils.js
diff options
context:
space:
mode:
authorDan J Miller <danjm.com@gmail.com>2019-08-03 07:00:50 +0800
committerGitHub <noreply@github.com>2019-08-03 07:00:50 +0800
commit165f44d3a487adc580cc4b68580d3ac42a34bcd0 (patch)
treeccc14f04f635fb35ca87e8349c88b2fa20531f94 /ui/app/pages/send/send-footer/send-footer.utils.js
parent9d5be5d29fcdab1273e30810f87de4624b8622a1 (diff)
downloadtangerine-wallet-browser-165f44d3a487adc580cc4b68580d3ac42a34bcd0.tar.gz
tangerine-wallet-browser-165f44d3a487adc580cc4b68580d3ac42a34bcd0.tar.zst
tangerine-wallet-browser-165f44d3a487adc580cc4b68580d3ac42a34bcd0.zip
Address book name save fix (#6945)
* Fix address book name saving and ens input errors on good inputs on unsupported networks * Add initial e2e test for address book send flow. * No longer need to click recipient row in e2e tests * Click write button in address book e2e test on seed confirm screen * Use correct seed phrase and private key in address-book.spec tests
Diffstat (limited to 'ui/app/pages/send/send-footer/send-footer.utils.js')
-rw-r--r--ui/app/pages/send/send-footer/send-footer.utils.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/pages/send/send-footer/send-footer.utils.js b/ui/app/pages/send/send-footer/send-footer.utils.js
index 91ac29014..ce65535a6 100644
--- a/ui/app/pages/send/send-footer/send-footer.utils.js
+++ b/ui/app/pages/send/send-footer/send-footer.utils.js
@@ -76,7 +76,7 @@ function constructUpdatedTx ({
function addressIsNew (toAccounts, newAddress) {
const newAddressNormalized = newAddress.toLowerCase()
- const foundMatching = toAccounts.some(({ address }) => address === newAddressNormalized)
+ const foundMatching = toAccounts.some(({ address }) => address.toLowerCase() === newAddressNormalized)
return !foundMatching
}