From c8b8e60f36b3935beb7e94c2f72d2841d40b834b Mon Sep 17 00:00:00 2001 From: Travis Semple Date: Thu, 6 Mar 2025 12:54:58 -0800 Subject: [PATCH] Hotfix 2.12.0a (#3293) --- auth-web/package-lock.json | 4 ++-- auth-web/package.json | 2 +- auth-web/src/composables/product-payment-factory.ts | 2 ++ 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/auth-web/package-lock.json b/auth-web/package-lock.json index c64d327e3..cf12e6875 100644 --- a/auth-web/package-lock.json +++ b/auth-web/package-lock.json @@ -1,12 +1,12 @@ { "name": "auth-web", - "version": "2.8.15", + "version": "2.8.15a", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "auth-web", - "version": "2.8.15", + "version": "2.8.15a", "dependencies": { "@bcrs-shared-components/base-address": "2.0.39", "@bcrs-shared-components/bread-crumb": "1.0.8", diff --git a/auth-web/package.json b/auth-web/package.json index befd6327a..b44796ae7 100644 --- a/auth-web/package.json +++ b/auth-web/package.json @@ -1,6 +1,6 @@ { "name": "auth-web", - "version": "2.8.15", + "version": "2.8.15a", "appName": "Auth Web", "sbcName": "SBC Common Components", "private": true, diff --git a/auth-web/src/composables/product-payment-factory.ts b/auth-web/src/composables/product-payment-factory.ts index 442c88d9e..194eb9c01 100644 --- a/auth-web/src/composables/product-payment-factory.ts +++ b/auth-web/src/composables/product-payment-factory.ts @@ -127,6 +127,8 @@ export const useProductPayment = (props = null, state = null) => { .filter(item => item.subscriptionStatus === ProductStatus.ACTIVE) // Remove MHR sub products. .filter(item => !item.parentCode) + // Remove hidden products which show up for staff. + .filter(item => !item.hidden) .map(item => item.code) const paymentMethodProducts = {} for (const [product, methods] of Object.entries(productPaymentMethods)) {