From 62ce9c44c212ff7a4666888dc19680ecf31d83e7 Mon Sep 17 00:00:00 2001 From: Hubert Sosinski Date: Thu, 13 Mar 2025 15:06:44 +0100 Subject: [PATCH 1/2] promise chaining to ensure proper form initialization --- Mobile-Expensify | 2 +- .../ReimbursementAccount/ReimbursementAccountPage.tsx | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Mobile-Expensify b/Mobile-Expensify index 7afb93138ae6..778d69514a1e 160000 --- a/Mobile-Expensify +++ b/Mobile-Expensify @@ -1 +1 @@ -Subproject commit 7afb93138ae617149fc3de9ce5c0aab8bfc39e79 +Subproject commit 778d69514a1ea7a193fcb7cbfba2afda770cd8b7 diff --git a/src/pages/ReimbursementAccount/ReimbursementAccountPage.tsx b/src/pages/ReimbursementAccount/ReimbursementAccountPage.tsx index 3b92e6fe549c..95d73e60720f 100644 --- a/src/pages/ReimbursementAccount/ReimbursementAccountPage.tsx +++ b/src/pages/ReimbursementAccount/ReimbursementAccountPage.tsx @@ -240,9 +240,10 @@ function ReimbursementAccountPage({route, policy, isLoadingPolicy}: Reimbursemen ); const continueUSDVBBASetup = () => { - setBankAccountSubStep(CONST.BANK_ACCOUNT.SETUP_TYPE.MANUAL); - setShouldShowContinueSetupButton(false); - setUSDBankAccountStep(currentStep); + setBankAccountSubStep(CONST.BANK_ACCOUNT.SETUP_TYPE.MANUAL).then(() => { + setShouldShowContinueSetupButton(false); + setUSDBankAccountStep(currentStep); + }); }; const continueNonUSDVBBASetup = () => { From 9c6ac860b710bb4fe9f0213143fa076864322ff5 Mon Sep 17 00:00:00 2001 From: Hubert Sosinski Date: Fri, 21 Mar 2025 09:05:03 +0100 Subject: [PATCH 2/2] Fix: Reset Mobile-Expensify submodule to 7afb93 --- Mobile-Expensify | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mobile-Expensify b/Mobile-Expensify index 778d69514a1e..7afb93138ae6 160000 --- a/Mobile-Expensify +++ b/Mobile-Expensify @@ -1 +1 @@ -Subproject commit 778d69514a1ea7a193fcb7cbfba2afda770cd8b7 +Subproject commit 7afb93138ae617149fc3de9ce5c0aab8bfc39e79