aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/transaction-list-item/transaction-list-item.component.js
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@gmail.com>2018-09-27 05:58:27 +0800
committerDan Finlay <542863+danfinlay@users.noreply.github.com>2018-09-27 08:38:49 +0800
commitcf6bead7ef1fea81f44abc26e4bf6847b9624d0d (patch)
treec52fd5a9cae615f7a708503ec6eec72c68bf256e /ui/app/components/transaction-list-item/transaction-list-item.component.js
parente4092d740a075b62f047711a9315f7ccf7be19ed (diff)
downloadtangerine-wallet-browser-cf6bead7ef1fea81f44abc26e4bf6847b9624d0d.tar.gz
tangerine-wallet-browser-cf6bead7ef1fea81f44abc26e4bf6847b9624d0d.tar.zst
tangerine-wallet-browser-cf6bead7ef1fea81f44abc26e4bf6847b9624d0d.zip
Close transaction details modal when clicking speed up
Diffstat (limited to 'ui/app/components/transaction-list-item/transaction-list-item.component.js')
-rw-r--r--ui/app/components/transaction-list-item/transaction-list-item.component.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/transaction-list-item/transaction-list-item.component.js b/ui/app/components/transaction-list-item/transaction-list-item.component.js
index 9dfba875e..c1c69f59b 100644
--- a/ui/app/components/transaction-list-item/transaction-list-item.component.js
+++ b/ui/app/components/transaction-list-item/transaction-list-item.component.js
@@ -81,12 +81,12 @@ export default class TransactionListItem extends PureComponent {
setSelectedToken(to)
}
- this.resubmit()
+ return this.resubmit()
}
resubmit () {
const { transaction: { id }, retryTransaction, history } = this.props
- retryTransaction(id)
+ return retryTransaction(id)
.then(id => history.push(`${CONFIRM_TRANSACTION_ROUTE}/${id}`))
}