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
  • Loading branch information
mountiny authored Nov 5, 2024
2 parents 8df4571 + c681603 commit 81d6fc7
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 81d6fc7

Please sign in to comment.