diff --git a/src/libs/ReimbursementAccountUtils.ts b/src/libs/ReimbursementAccountUtils.ts index 4bce69e731c0..7658005b2204 100644 --- a/src/libs/ReimbursementAccountUtils.ts +++ b/src/libs/ReimbursementAccountUtils.ts @@ -35,7 +35,7 @@ function getBankAccountIDAsNumber(achData?: ACHDataReimbursementAccount): number /** Returns true if VBBA flow is in progress */ const hasInProgressVBBA = (achData?: ACHDataReimbursementAccount, isNonUSDWorkspace?: boolean, policyID?: string) => { - if (achData?.policyID !== policyID) { + if (policyID && achData?.policyID !== policyID) { return false; }