From 21289513cfc95670311b5d70003c018445903f25 Mon Sep 17 00:00:00 2001 From: Razmig Sarkissian Date: Sun, 8 Jun 2025 16:40:24 +0200 Subject: [PATCH] fix issue with groupstage start date --- PadelClub.xcodeproj/project.pbxproj | 4 ++-- PadelClub/Views/Tournament/Screen/BroadcastView.swift | 8 ++++++++ 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/PadelClub.xcodeproj/project.pbxproj b/PadelClub.xcodeproj/project.pbxproj index 0aa5f59..5291060 100644 --- a/PadelClub.xcodeproj/project.pbxproj +++ b/PadelClub.xcodeproj/project.pbxproj @@ -3129,7 +3129,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 1.2.34; + MARKETING_VERSION = 1.2.35; PRODUCT_BUNDLE_IDENTIFIER = app.padelclub; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; @@ -3175,7 +3175,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 1.2.34; + MARKETING_VERSION = 1.2.35; PRODUCT_BUNDLE_IDENTIFIER = app.padelclub; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; diff --git a/PadelClub/Views/Tournament/Screen/BroadcastView.swift b/PadelClub/Views/Tournament/Screen/BroadcastView.swift index 5382d73..33ef854 100644 --- a/PadelClub/Views/Tournament/Screen/BroadcastView.swift +++ b/PadelClub/Views/Tournament/Screen/BroadcastView.swift @@ -318,6 +318,14 @@ struct BroadcastView: View { Text("Lien du tournoi à partager") } + #if DEBUG + Section { + actionForURL(title: "La Boutique", url: URLs.main.url.appending(path: "shop")) + } header: { + Text("Lien de la boutique") + } + #endif + Section { let club = tournament.club() actionForURL(title: (club == nil) ? "Aucun club indiqué pour ce tournoi" : club!.clubTitle(), description: "Page du club", url: club?.shareURL())