From 80c042867e12421257b60d37dbfa31dcd8a1be3f Mon Sep 17 00:00:00 2001 From: Razmig Sarkissian Date: Thu, 20 Jun 2024 15:23:44 +0200 Subject: [PATCH] fix message --- .../Tournament/Shared/TournamentBroadcastRowView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PadelClub/Views/Tournament/Shared/TournamentBroadcastRowView.swift b/PadelClub/Views/Tournament/Shared/TournamentBroadcastRowView.swift index cb4e79b..d4b1ce2 100644 --- a/PadelClub/Views/Tournament/Shared/TournamentBroadcastRowView.swift +++ b/PadelClub/Views/Tournament/Shared/TournamentBroadcastRowView.swift @@ -15,8 +15,8 @@ struct TournamentBroadcastRowView: View { NavigationLink(value: Screen.broadcast) { LabeledContent { if Store.main.userId == nil { - Image(systemName: "xmark.circle.fill") - .foregroundStyle(.logoRed) + Image(systemName: "exclamationmark.circle.fill") + .foregroundStyle(.master) } else { if tournament.isPrivate { Text("tournoi privé").foregroundStyle(.logoRed) @@ -27,7 +27,7 @@ struct TournamentBroadcastRowView: View { } label: { Text("Publication") if Store.main.userId == nil { - Text("Un compte Padel Club est nécessaire") + Text("Créez un compte pour publier !") } } }