mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Fix react warning for keys on ens address book
This commit is contained in:
parent
31da623c21
commit
f925a37a9f
@ -41,7 +41,6 @@ EnsInput.prototype.render = function () {
|
||||
this.checkName()
|
||||
},
|
||||
})
|
||||
|
||||
return h('div', {
|
||||
style: { width: '100%' },
|
||||
}, [
|
||||
@ -55,6 +54,7 @@ EnsInput.prototype.render = function () {
|
||||
return h('option', {
|
||||
value: identity.address,
|
||||
label: identity.name,
|
||||
key: identity.address,
|
||||
})
|
||||
}),
|
||||
// Corresponds to previously sent-to addresses.
|
||||
|
Loading…
Reference in New Issue
Block a user