mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 12:29:06 +01:00
Cleanup stray logs and lint
This commit is contained in:
parent
2346c9b6b9
commit
9ec8663605
@ -43,7 +43,6 @@ function mapStateToProps (state) {
|
|||||||
accounts,
|
accounts,
|
||||||
address,
|
address,
|
||||||
} = state.metamask
|
} = state.metamask
|
||||||
console.log("ADDRESS:", address)
|
|
||||||
const selected = address || Object.keys(accounts)[0]
|
const selected = address || Object.keys(accounts)[0]
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
@ -27,10 +27,6 @@ class AccountDropdowns extends Component {
|
|||||||
return Object.keys(identities).map((key, index) => {
|
return Object.keys(identities).map((key, index) => {
|
||||||
const identity = identities[key]
|
const identity = identities[key]
|
||||||
const isSelected = identity.address === selected
|
const isSelected = identity.address === selected
|
||||||
console.log("address", identity.address)
|
|
||||||
console.log("selected:", selected)
|
|
||||||
console.log("isSelected:", isSelected)
|
|
||||||
// debugger;
|
|
||||||
|
|
||||||
return h(
|
return h(
|
||||||
DropdownMenuItem,
|
DropdownMenuItem,
|
||||||
@ -63,7 +59,7 @@ class AccountDropdowns extends Component {
|
|||||||
whiteSpace: 'nowrap',
|
whiteSpace: 'nowrap',
|
||||||
overflow: 'hidden',
|
overflow: 'hidden',
|
||||||
textOverflow: 'ellipsis',
|
textOverflow: 'ellipsis',
|
||||||
}
|
},
|
||||||
}, identity.name || ''),
|
}, identity.name || ''),
|
||||||
h('span', { style: { marginLeft: '20px', fontSize: '24px' } }, isSelected ? h('.check', '✓') : null),
|
h('span', { style: { marginLeft: '20px', fontSize: '24px' } }, isSelected ? h('.check', '✓') : null),
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user