From 1bd3b8ea895ceb21d1083c6212811f5d68b3ab7b Mon Sep 17 00:00:00 2001 From: Travis Semple Date: Thu, 13 Feb 2025 10:26:29 -0800 Subject: [PATCH] Update product-payment-factory.ts --- auth-web/src/composables/product-payment-factory.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]