diff options
author | Dan Finlay <dan@danfinlay.com> | 2017-03-01 06:12:07 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2017-03-01 06:13:58 +0800 |
commit | e07e4b7bc73da1d5a2712893cc03e6f4bd90fb6d (patch) | |
tree | db87b350cde5aef119a79a1195c677cc50ece2b4 /ui | |
parent | 157dd994f09219311522e37343939451c711eb7e (diff) | |
download | tangerine-wallet-browser-e07e4b7bc73da1d5a2712893cc03e6f4bd90fb6d.tar tangerine-wallet-browser-e07e4b7bc73da1d5a2712893cc03e6f4bd90fb6d.tar.gz tangerine-wallet-browser-e07e4b7bc73da1d5a2712893cc03e6f4bd90fb6d.tar.bz2 tangerine-wallet-browser-e07e4b7bc73da1d5a2712893cc03e6f4bd90fb6d.tar.lz tangerine-wallet-browser-e07e4b7bc73da1d5a2712893cc03e6f4bd90fb6d.tar.xz tangerine-wallet-browser-e07e4b7bc73da1d5a2712893cc03e6f4bd90fb6d.tar.zst tangerine-wallet-browser-e07e4b7bc73da1d5a2712893cc03e6f4bd90fb6d.zip |
Linted
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/components/pending-tx-details.js | 4 | ||||
-rw-r--r-- | ui/app/send.js | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/ui/app/components/pending-tx-details.js b/ui/app/components/pending-tx-details.js index 892ef4ad6..9a8f202be 100644 --- a/ui/app/components/pending-tx-details.js +++ b/ui/app/components/pending-tx-details.js @@ -116,8 +116,8 @@ PTXP.render = function () { selected: advanced, onChange: () => { this.setState({advanced: !advanced}) - } - }) + }, + }), ]), // Ether Value diff --git a/ui/app/send.js b/ui/app/send.js index 752eed15a..581e3afa0 100644 --- a/ui/app/send.js +++ b/ui/app/send.js @@ -10,8 +10,6 @@ const addressSummary = require('./util').addressSummary const isHex = require('./util').isHex const EthBalance = require('./components/eth-balance') const ethUtil = require('ethereumjs-util') -const RangeSlider = require('./components/range-slider') -const Tooltip = require('./components/tooltip') module.exports = connect(mapStateToProps)(SendTransactionScreen) function mapStateToProps (state) { |