From 05e8753641119b7350219e312fa55935bc5abc74 Mon Sep 17 00:00:00 2001 From: Alexander Tseung Date: Wed, 12 Dec 2018 18:33:46 -0800 Subject: Fix speed up button not showing for transactions with the lowest nonce (#5925) --- ui/app/components/transaction-list/transaction-list.component.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ui') diff --git a/ui/app/components/transaction-list/transaction-list.component.js b/ui/app/components/transaction-list/transaction-list.component.js index c1e3b3d1c..ddab3b290 100644 --- a/ui/app/components/transaction-list/transaction-list.component.js +++ b/ui/app/components/transaction-list/transaction-list.component.js @@ -62,7 +62,7 @@ export default class TransactionList extends PureComponent { { pendingTransactions.map((transactionGroup, index) => ( - this.renderTransaction(transactionGroup, index, true, index === pendingLength - 1) + this.renderTransaction(transactionGroup, index, true) )) } @@ -84,7 +84,7 @@ export default class TransactionList extends PureComponent { ) } - renderTransaction (transactionGroup, index, isPendingTx = false, isEarliestNonce = false) { + renderTransaction (transactionGroup, index, isPendingTx = false) { const { selectedToken, assetImages } = this.props const { transactions = [] } = transactionGroup @@ -98,7 +98,7 @@ export default class TransactionList extends PureComponent {