From f1d21b71ee925814678b1f1c86137fe59b2956ee Mon Sep 17 00:00:00 2001 From: Laurent Date: Thu, 18 Sep 2025 11:43:32 +0200 Subject: [PATCH] update viewable products in the store --- PadelClubData/Subscriptions/StoreManager.swift | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/PadelClubData/Subscriptions/StoreManager.swift b/PadelClubData/Subscriptions/StoreManager.swift index 425de9a..e34f7e5 100644 --- a/PadelClubData/Subscriptions/StoreManager.swift +++ b/PadelClubData/Subscriptions/StoreManager.swift @@ -71,10 +71,8 @@ public class StoreManager { fileprivate func _productIdentifiers() -> [String] { var items: [StoreItem] = [] switch Guard.main.currentPlan { - case .fivePerMonth: - items = [StoreItem.unit, StoreItem.unit10Pack, StoreItem.monthlyUnlimited] case .monthlyUnlimited: - break + items = [StoreItem.unit, StoreItem.unit10Pack] default: items = [StoreItem.unit, StoreItem.unit10Pack, StoreItem.monthlyUnlimited] }