aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/pages/send/send-footer/send-footer.utils.js
diff options
context:
space:
mode:
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
}