From 6b6b55624d899615f2b02937b0d100666eb8a285 Mon Sep 17 00:00:00 2001 From: Laurent Date: Wed, 10 Apr 2024 10:41:38 +0200 Subject: [PATCH] Adds in-app purchases --- PadelClub/Views/Subscription/StoreItem.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PadelClub/Views/Subscription/StoreItem.swift b/PadelClub/Views/Subscription/StoreItem.swift index 00d9db5..80a2188 100644 --- a/PadelClub/Views/Subscription/StoreItem.swift +++ b/PadelClub/Views/Subscription/StoreItem.swift @@ -8,7 +8,8 @@ import Foundation enum StoreItem: String, Identifiable, CaseIterable { - case monthly = "app.padelclub.tournament.monthly" + case unlimited = "app.padelclub.unlimited" + case unit = "app.padelclub.tournament.unit" var id: String { return self.rawValue }