diff --git a/auth-web/src/composables/product-payment-factory.ts b/auth-web/src/composables/product-payment-factory.ts index 10e620e02..442c88d9e 100644 --- a/auth-web/src/composables/product-payment-factory.ts +++ b/auth-web/src/composables/product-payment-factory.ts @@ -91,7 +91,7 @@ export const useProductPayment = (props = null, state = null) => { let exclusionSet = [PaymentTypes.INTERNAL, PaymentTypes.EFT, PaymentTypes.EJV] let inclusionSet = [] - if (orgStore.currentOrganization.accessType === AccessType.GOVM) { + if (orgStore.currentOrganization?.accessType === AccessType.GOVM) { inclusionSet = [PaymentTypes.EJV] } else if (orgStore.currentOrgPaymentDetails?.eftEnable) { exclusionSet = [PaymentTypes.INTERNAL, PaymentTypes.EJV]