Skip to content

Commit

Permalink
Merge pull request #52056 from Nodebrute/fixinverted
Browse files Browse the repository at this point in the history
[CP Staging] fix inverted values

(cherry picked from commit 81d6fc7)

(CP triggered by mountiny)
  • Loading branch information
mountiny authored and OSBotify committed Nov 5, 2024
1 parent 709defe commit 1fe2af3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/ReimbursementAccount/BankAccountStep.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand All @@ -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;
}
Expand Down

0 comments on commit 1fe2af3

Please sign in to comment.