diff --git a/PadelClub/Views/Navigation/Umpire/UmpireView.swift b/PadelClub/Views/Navigation/Umpire/UmpireView.swift index 0a6fb23..93e1132 100644 --- a/PadelClub/Views/Navigation/Umpire/UmpireView.swift +++ b/PadelClub/Views/Navigation/Umpire/UmpireView.swift @@ -48,28 +48,26 @@ struct UmpireView: View { List { PurchaseListView() - - if Guard.main.currentPlan != .monthlyUnlimited { - Section { - Button { - self.showSubscriptions = true - } label: { - Label("Les offres", systemImage: "bookmark.fill") - }.simultaneousGesture( - LongPressGesture() - .onEnded { _ in - self.showProductIds = true - } - ) - - .highPriorityGesture( - TapGesture() - .onEnded { _ in - self.showSubscriptions = true - } - ) - - } + + Section { + Button { + self.showSubscriptions = true + } label: { + Label("Les offres", systemImage: "bookmark.fill") + }.simultaneousGesture( + LongPressGesture() + .onEnded { _ in + self.showProductIds = true + } + ) + + .highPriorityGesture( + TapGesture() + .onEnded { _ in + self.showSubscriptions = true + } + ) + } if StoreCenter.main.isAuthenticated {