From 8d33ec6a3d22e6bcd014b430a174ea8e056019f0 Mon Sep 17 00:00:00 2001 From: Connor Bryan Date: Thu, 12 Jul 2018 16:54:50 -0500 Subject: [PATCH] Bad equality operator. Bad. --- common/components/AddressField.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/components/AddressField.tsx b/common/components/AddressField.tsx index 20571280..af22b0ed 100644 --- a/common/components/AddressField.tsx +++ b/common/components/AddressField.tsx @@ -60,7 +60,7 @@ const AddressField: React.SFC = ({ isValid={isValid} type="text" value={ - value !== null + value != null ? value : isCheckSummed ? toChecksumAddress(currentTo.raw) : currentTo.raw }