From 1fe2af35cd9e79f32fd22f9e56809cd107fc670e Mon Sep 17 00:00:00 2001 From: Vit Horacek <36083550+mountiny@users.noreply.github.com> Date: Tue, 5 Nov 2024 19:43:34 +0100 Subject: [PATCH] Merge pull request #52056 from Nodebrute/fixinverted [CP Staging] fix inverted values (cherry picked from commit 81d6fc7eb3de0bad90b2eff194c02a8ca21dcdbf) (CP triggered by mountiny) --- src/pages/ReimbursementAccount/BankAccountStep.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/ReimbursementAccount/BankAccountStep.tsx b/src/pages/ReimbursementAccount/BankAccountStep.tsx index 4244a94dbdf2..f6fab3056cf2 100644 --- a/src/pages/ReimbursementAccount/BankAccountStep.tsx +++ b/src/pages/ReimbursementAccount/BankAccountStep.tsx @@ -181,7 +181,7 @@ function BankAccountStep({ return; } if (!account?.validated) { - selectedSubStep.current = CONST.BANK_ACCOUNT.SETUP_TYPE.MANUAL; + selectedSubStep.current = CONST.BANK_ACCOUNT.SETUP_TYPE.PLAID; toggleValidateCodeActionModal?.(true); return; } @@ -198,7 +198,7 @@ function BankAccountStep({ title={translate('bankAccount.connectManually')} onPress={() => { if (!account?.validated) { - selectedSubStep.current = CONST.BANK_ACCOUNT.SETUP_TYPE.PLAID; + selectedSubStep.current = CONST.BANK_ACCOUNT.SETUP_TYPE.MANUAL; toggleValidateCodeActionModal?.(true); return; }