Skip to content

Commit

Permalink
Fix isMascara and update yarn.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
chikeichan committed Dec 12, 2017
1 parent 57c9143 commit 515437a
Show file tree
Hide file tree
Showing 2 changed files with 464 additions and 290 deletions.
4 changes: 2 additions & 2 deletions ui/app/components/tx-view.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ const connect = require('react-redux').connect
const h = require('react-hyperscript')
const ethUtil = require('ethereumjs-util')
const inherits = require('util').inherits
const isMobileBrowser = require('../../lib/is-mobile-browser')
const actions = require('../actions')
const selectors = require('../selectors')

Expand Down Expand Up @@ -33,6 +32,7 @@ function mapStateToProps (state) {
selectedToken: selectors.getSelectedToken(state),
identity,
network,
isMascara,
}
}

Expand Down Expand Up @@ -100,7 +100,7 @@ TxView.prototype.renderButtons = function () {
}

TxView.prototype.render = function () {
const { selectedAddress, identity, network } = this.props
const { selectedAddress, identity, network, isMascara } = this.props

return h('div.tx-view.flex-column', {
style: {},
Expand Down
Loading

0 comments on commit 515437a

Please sign in to comment.