Cleanup stray logs and lint

feature/default_network_editable
sdtsui 7 years ago
parent 2346c9b6b9
commit 9ec8663605
  1. 1
      ui/app/app.js
  2. 6
      ui/app/components/account-dropdowns.js

@ -43,7 +43,6 @@ function mapStateToProps (state) {
accounts,
address,
} = state.metamask
console.log("ADDRESS:", address)
const selected = address || Object.keys(accounts)[0]
return {

@ -27,10 +27,6 @@ class AccountDropdowns extends Component {
return Object.keys(identities).map((key, index) => {
const identity = identities[key]
const isSelected = identity.address === selected
console.log("address", identity.address)
console.log("selected:", selected)
console.log("isSelected:", isSelected)
// debugger;
return h(
DropdownMenuItem,
@ -63,7 +59,7 @@ class AccountDropdowns extends Component {
whiteSpace: 'nowrap',
overflow: 'hidden',
textOverflow: 'ellipsis',
}
},
}, identity.name || ''),
h('span', { style: { marginLeft: '20px', fontSize: '24px' } }, isSelected ? h('.check', '✓') : null),
]

Loading…
Cancel
Save