Merge pull request #1675 from MetaMask/warning-fixes

React Warning Fixes
feature/default_network_editable
Dan Finlay 8 years ago committed by GitHub
commit ed08e736d7
  1. 2
      ui/app/components/ens-input.js
  2. 2
      ui/app/keychains/hd/create-vault-complete.js

@ -41,7 +41,6 @@ EnsInput.prototype.render = function () {
this.checkName() this.checkName()
}, },
}) })
return h('div', { return h('div', {
style: { width: '100%' }, style: { width: '100%' },
}, [ }, [
@ -55,6 +54,7 @@ EnsInput.prototype.render = function () {
return h('option', { return h('option', {
value: identity.address, value: identity.address,
label: identity.name, label: identity.name,
key: identity.address,
}) })
}), }),
// Corresponds to previously sent-to addresses. // Corresponds to previously sent-to addresses.

@ -20,7 +20,7 @@ function mapStateToProps (state) {
CreateVaultCompleteScreen.prototype.render = function () { CreateVaultCompleteScreen.prototype.render = function () {
var state = this.props var state = this.props
var seed = state.seed || state.cachedSeed var seed = state.seed || state.cachedSeed || ''
return ( return (

Loading…
Cancel
Save