From 54f0854e2b3563204e9ed7f9f5b7110a92c082c2 Mon Sep 17 00:00:00 2001 From: Anusha Date: Tue, 5 Nov 2024 21:06:56 +0500 Subject: [PATCH] fix inverted values --- 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; }