diff --git a/src/features/BuyMatchPopup/store/helpers.tsx b/src/features/BuyMatchPopup/store/helpers.tsx index 193d2e62..710c0487 100644 --- a/src/features/BuyMatchPopup/store/helpers.tsx +++ b/src/features/BuyMatchPopup/store/helpers.tsx @@ -84,7 +84,7 @@ export const transformSubsciptions = ({ return { [SubscriptionType.Month]: transformByType(SubscriptionType.Month), [SubscriptionType.Year]: transformByType(SubscriptionType.Year), - [SubscriptionType.PayPerView]: [{ + [SubscriptionType.PayPerView]: subscriptions.pay_per_view ? ([{ currency: currencySymbols[payPerView?.currency_iso], description: { lexic: 'description_match_live_and_on_demand', @@ -96,6 +96,6 @@ export const transformSubsciptions = ({ pass: 'pass_match_access', price: payPerView?.price, type: SubscriptionType.PayPerView, - }], + }]) : [], } }