aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
Diffstat (limited to 'ui')
-rw-r--r--ui/app/components/transaction-list/transaction-list.component.js6
1 files changed, 3 insertions, 3 deletions
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 {
</div>
{
pendingTransactions.map((transactionGroup, index) => (
- this.renderTransaction(transactionGroup, index, true, index === pendingLength - 1)
+ this.renderTransaction(transactionGroup, index, true)
))
}
</div>
@@ -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 {
<TransactionListItem
transactionGroup={transactionGroup}
key={`${transactionGroup.nonce}:${index}`}
- showRetry={isPendingTx && this.shouldShowRetry(transactionGroup, isEarliestNonce)}
+ showRetry={isPendingTx && this.shouldShowRetry(transactionGroup, index === 0)}
showCancel={isPendingTx && this.shouldShowCancel(transactionGroup)}
token={selectedToken}
assetImages={assetImages}