Skip to content

Commit

Permalink
Update product-payment-factory.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
seeker25 authored Mar 6, 2025
1 parent aa0c9cd commit 1f88d3c
Showing 1 changed file with 2 additions and 0 deletions.
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 1f88d3c

Please # to comment.