DeepScan suggestions were implemented

This commit is contained in:
Victor Baranov 2018-10-11 23:06:03 +03:00
parent 9e461d2cc4
commit 4c413dfd68
2 changed files with 3 additions and 5 deletions

View File

@ -208,7 +208,7 @@ App.prototype.renderAppBar = function () {
alignItems: 'center',
},
}, [
props.isUnlocked && h(AccountDropdowns, {
h(AccountDropdowns, {
style: {},
enableAccountsSelector: true,
identities: this.props.identities,
@ -218,7 +218,7 @@ App.prototype.renderAppBar = function () {
}, []),
// hamburger
props.isUnlocked && h('div', {
h('div', {
className: state.sandwichClass || 'sandwich-expando',
style: {
width: 16,

View File

@ -141,9 +141,7 @@ TokenCell.prototype.send = function (address, event) {
event.preventDefault()
event.stopPropagation()
const url = tokenFactoryFor(address)
if (url) {
navigateTo(url)
}
navigateTo(url)
}
TokenCell.prototype.view = function (address, userAddress, network, event) {