Skip to content

Commit

Permalink
Hotfix 2.12.0a (#3293)
Browse files Browse the repository at this point in the history
  • Loading branch information
seeker25 authored Mar 6, 2025
1 parent 014985a commit c8b8e60
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions auth-web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion auth-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "auth-web",
"version": "2.8.15",
"version": "2.8.15a",
"appName": "Auth Web",
"sbcName": "SBC Common Components",
"private": true,
Expand Down
2 changes: 2 additions & 0 deletions auth-web/src/composables/product-payment-factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down

0 comments on commit c8b8e60

Please # to comment.