fix: Error when editing saved ENS address
- reset the `address` field properly to zero (instead of empty) address Fixes #14901
This commit is contained in:
parent
c4f7c9732d
commit
f28343e264
|
@ -451,7 +451,7 @@ StatusModal {
|
|||
// Update root values
|
||||
if (Utils.isLikelyEnsName(plainText)) {
|
||||
d.ens = plainText
|
||||
d.address = ""
|
||||
d.address = Constants.zeroAddress
|
||||
d.chainShortNames = ""
|
||||
}
|
||||
else {
|
||||
|
|
Loading…
Reference in New Issue