diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-08-23 08:37:16 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-08-23 08:37:16 +0800 |
commit | 5d24621b56427bffde26ab9281bd6990a04bbfef (patch) | |
tree | 778e17e17a51271ff6fbc39018f3e3c199cc566f /ui/app | |
parent | 17f3f90d805d91aedac517c8d6607a1f337c6525 (diff) | |
download | tangerine-wallet-browser-5d24621b56427bffde26ab9281bd6990a04bbfef.tar tangerine-wallet-browser-5d24621b56427bffde26ab9281bd6990a04bbfef.tar.gz tangerine-wallet-browser-5d24621b56427bffde26ab9281bd6990a04bbfef.tar.bz2 tangerine-wallet-browser-5d24621b56427bffde26ab9281bd6990a04bbfef.tar.lz tangerine-wallet-browser-5d24621b56427bffde26ab9281bd6990a04bbfef.tar.xz tangerine-wallet-browser-5d24621b56427bffde26ab9281bd6990a04bbfef.tar.zst tangerine-wallet-browser-5d24621b56427bffde26ab9281bd6990a04bbfef.zip |
More linting
Diffstat (limited to 'ui/app')
-rw-r--r-- | ui/app/components/shift-list-item.js | 2 | ||||
-rw-r--r-- | ui/app/components/transaction-list.js | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/ui/app/components/shift-list-item.js b/ui/app/components/shift-list-item.js index 1c64a86b2..38c19eb28 100644 --- a/ui/app/components/shift-list-item.js +++ b/ui/app/components/shift-list-item.js @@ -26,8 +26,6 @@ function ShiftListItem () { } ShiftListItem.prototype.render = function () { - var props = this.props - const { response } = props return ( h('.transaction-list-item.flex-row', { diff --git a/ui/app/components/transaction-list.js b/ui/app/components/transaction-list.js index fac289a80..7e1bedb05 100644 --- a/ui/app/components/transaction-list.js +++ b/ui/app/components/transaction-list.js @@ -1,7 +1,6 @@ const Component = require('react').Component const h = require('react-hyperscript') const inherits = require('util').inherits -const genAccountLink = require('../../lib/account-link') const TransactionListItem = require('./transaction-list-item') @@ -14,7 +13,7 @@ function TransactionList () { } TransactionList.prototype.render = function () { - const { txsToRender, network, unconfMsgs, address } = this.props + const { txsToRender, network, unconfMsgs } = this.props var shapeShiftTxList if (network === '1') { shapeShiftTxList = this.props.shapeShiftTxList |