From b19d304c9483b9a2864093651f95f1eb53b1dfbd Mon Sep 17 00:00:00 2001 From: OGPoyraz Date: Thu, 20 Jun 2024 08:51:00 +0200 Subject: [PATCH] Fix stuck after nonce too low --- app/components/Views/confirmations/SendFlow/Confirm/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/components/Views/confirmations/SendFlow/Confirm/index.js b/app/components/Views/confirmations/SendFlow/Confirm/index.js index a09153ebd01..9b4a15eb4ca 100644 --- a/app/components/Views/confirmations/SendFlow/Confirm/index.js +++ b/app/components/Views/confirmations/SendFlow/Confirm/index.js @@ -970,6 +970,8 @@ class Confirm extends PureComponent { MetaMetricsEvents.QR_HARDWARE_TRANSACTION_CANCELED, ); } + resetTransaction(); + navigation?.dangerouslyGetParent()?.pop(); } this.setState({ transactionConfirmed: false }); };