Skip to content

Commit

Permalink
Merge pull request Expensify#14508 from Expensify/nat-missingimport
Browse files Browse the repository at this point in the history
Fix missing import preventing opening Plaid modal
  • Loading branch information
MariaHCD authored Jan 24, 2023
2 parents ae66a7f + 82b52f1 commit 553916c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/libs/actions/BankAccounts.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import DateUtils from '../DateUtils';
import * as PlaidDataProps from '../../pages/ReimbursementAccount/plaidDataPropTypes';
import Navigation from '../Navigation/Navigation';
import ROUTES from '../../ROUTES';
import * as ReimbursementAccount from './ReimbursementAccount';

export {
goToWithdrawalAccountSetupStep,
Expand Down Expand Up @@ -38,7 +39,7 @@ function clearPlaid() {
}

function openPlaidView() {
clearPlaid().then(() => this.setBankAccountSubStep(CONST.BANK_ACCOUNT.SETUP_TYPE.PLAID));
clearPlaid().then(() => ReimbursementAccount.setBankAccountSubStep(CONST.BANK_ACCOUNT.SETUP_TYPE.PLAID));
}

function openPersonalBankAccountSetupView() {
Expand Down

0 comments on commit 553916c

Please sign in to comment.