From 8867ca84977303bc23218eeeb4eb672ace2715df Mon Sep 17 00:00:00 2001 From: daledah Date: Mon, 24 Nov 2025 14:00:44 +0700 Subject: [PATCH] fix: RHP back button on Success page after deactivating card opens not here page --- src/pages/settings/Wallet/ReportCardLostPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/settings/Wallet/ReportCardLostPage.tsx b/src/pages/settings/Wallet/ReportCardLostPage.tsx index 3a23c9a2e033a..b0def8ba61607 100644 --- a/src/pages/settings/Wallet/ReportCardLostPage.tsx +++ b/src/pages/settings/Wallet/ReportCardLostPage.tsx @@ -150,7 +150,7 @@ function ReportCardLostPage({ return; } - Navigation.goBack(ROUTES.SETTINGS_WALLET_DOMAIN_CARD.getRoute(cardID)); + Navigation.goBack(ROUTES.SETTINGS_WALLET_DOMAIN_CARD.getRoute(newCardID ?? cardID)); }; const isDamaged = reason?.key === OPTIONS_KEYS.DAMAGED;