diff --git a/app/components/UI/Transactions/index.js b/app/components/UI/Transactions/index.js index 312bd96b798..8404fe5f9b4 100644 --- a/app/components/UI/Transactions/index.js +++ b/app/components/UI/Transactions/index.js @@ -275,6 +275,14 @@ class Transactions extends PureComponent { componentDidUpdate() { this.updateBlockExplorer(); + if ( + this.props.confirmedTransactions.some( + ({ id }) => id === this.existingTx?.id, + ) + ) { + this.onSpeedUpCompleted(); + this.onCancelCompleted(); + } } init() {