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()
},
})
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.

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

Loading…
Cancel
Save