diff options
author | Chi Kei Chan <chikeichan@gmail.com> | 2017-12-13 04:22:22 +0800 |
---|---|---|
committer | Chi Kei Chan <chikeichan@gmail.com> | 2017-12-13 04:22:22 +0800 |
commit | 515437a4c956e47a5f1d4522715a9021e08d3408 (patch) | |
tree | ea9e90f4fb6097e852e538bd6a00a7ae510224fd /ui/app/components | |
parent | 57c91435a7357165441252acfffcdaff6e54e422 (diff) | |
download | tangerine-wallet-browser-515437a4c956e47a5f1d4522715a9021e08d3408.tar tangerine-wallet-browser-515437a4c956e47a5f1d4522715a9021e08d3408.tar.gz tangerine-wallet-browser-515437a4c956e47a5f1d4522715a9021e08d3408.tar.bz2 tangerine-wallet-browser-515437a4c956e47a5f1d4522715a9021e08d3408.tar.lz tangerine-wallet-browser-515437a4c956e47a5f1d4522715a9021e08d3408.tar.xz tangerine-wallet-browser-515437a4c956e47a5f1d4522715a9021e08d3408.tar.zst tangerine-wallet-browser-515437a4c956e47a5f1d4522715a9021e08d3408.zip |
Fix isMascara and update yarn.lock
Diffstat (limited to 'ui/app/components')
-rw-r--r-- | ui/app/components/tx-view.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/tx-view.js b/ui/app/components/tx-view.js index 0f8a54a74..e42a20c85 100644 --- a/ui/app/components/tx-view.js +++ b/ui/app/components/tx-view.js @@ -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') @@ -33,6 +32,7 @@ function mapStateToProps (state) { selectedToken: selectors.getSelectedToken(state), identity, network, + isMascara, } } @@ -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: {}, |