aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/transaction-list.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-08-23 08:21:54 +0800
committerDan Finlay <dan@danfinlay.com>2016-08-23 08:21:54 +0800
commit17f3f90d805d91aedac517c8d6607a1f337c6525 (patch)
treed8570982f3dfdff5adb8bf964ac5739e720c6403 /ui/app/components/transaction-list.js
parentf57cbe59fc9e0d3cfb3ee54da749470248fe2b8b (diff)
downloadtangerine-wallet-browser-17f3f90d805d91aedac517c8d6607a1f337c6525.tar.gz
tangerine-wallet-browser-17f3f90d805d91aedac517c8d6607a1f337c6525.tar.zst
tangerine-wallet-browser-17f3f90d805d91aedac517c8d6607a1f337c6525.zip
Linted
Diffstat (limited to 'ui/app/components/transaction-list.js')
-rw-r--r--ui/app/components/transaction-list.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/ui/app/components/transaction-list.js b/ui/app/components/transaction-list.js
index 8b9004e69..fac289a80 100644
--- a/ui/app/components/transaction-list.js
+++ b/ui/app/components/transaction-list.js
@@ -2,7 +2,6 @@ const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const genAccountLink = require('../../lib/account-link')
-const extension = require('../../../app/scripts/lib/extension')
const TransactionListItem = require('./transaction-list-item')
@@ -17,12 +16,11 @@ function TransactionList () {
TransactionList.prototype.render = function () {
const { txsToRender, network, unconfMsgs, address } = this.props
var shapeShiftTxList
- if (network === '1'){
+ if (network === '1') {
shapeShiftTxList = this.props.shapeShiftTxList
}
const transactions = !shapeShiftTxList ? txsToRender.concat(unconfMsgs) : txsToRender.concat(unconfMsgs, shapeShiftTxList)
.sort((a, b) => b.time - a.time)
- const accountLink = genAccountLink(address, network)
return (