Skip to content

Commit

Permalink
fixed not clickable back button
Browse files Browse the repository at this point in the history
  • Loading branch information
Skalakid committed Jul 10, 2023
1 parent b105aa3 commit 174bcac
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 174bcac

Please sign in to comment.