Skip to content

Commit 9e071db

Browse files
authored
Merge pull request #91939 from callstack-internal/VickyStash/bugfix/91884-fix-continue-setup-display
Fix Continue setup and Start over button do not appear after returning to initial page
2 parents afb4a2b + e1ac497 commit 9e071db

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/libs/ReimbursementAccountUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function getBankAccountIDAsNumber(achData?: ACHDataReimbursementAccount): number
3535

3636
/** Returns true if VBBA flow is in progress */
3737
const hasInProgressVBBA = (achData?: ACHDataReimbursementAccount, isNonUSDWorkspace?: boolean, policyID?: string) => {
38-
if (achData?.policyID !== policyID) {
38+
if (policyID && achData?.policyID !== policyID) {
3939
return false;
4040
}
4141

0 commit comments

Comments
 (0)