Skip to content

Commit

Permalink
Merge branch 'main' of github.com-avastorm:multijump/Expensify-App in…
Browse files Browse the repository at this point in the history
…to 16287_refactor_BasePaymentsPage
  • Loading branch information
multijump committed Jul 12, 2023
2 parents 5684bd8 + 8923cb0 commit 3691c77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/ReimbursementAccount/ReimbursementAccountPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ class ReimbursementAccountPage extends React.Component {
case CONST.BANK_ACCOUNT.STEP.VALIDATION:
if (_.contains([BankAccount.STATE.VERIFYING, BankAccount.STATE.SETUP], achData.state)) {
BankAccounts.goToWithdrawalAccountSetupStep(CONST.BANK_ACCOUNT.STEP.ACH_CONTRACT);
} else if (achData.state === BankAccount.STATE.PENDING) {
} else if (!this.props.network.isOffline && achData.state === BankAccount.STATE.PENDING) {
this.setState({
shouldShowContinueSetupButton: true,
});
Expand Down

0 comments on commit 3691c77

Please sign in to comment.