diff --git a/PadelClub/Views/Tournament/Shared/TournamentCellView.swift b/PadelClub/Views/Tournament/Shared/TournamentCellView.swift index 057c6dd..5014e02 100644 --- a/PadelClub/Views/Tournament/Shared/TournamentCellView.swift +++ b/PadelClub/Views/Tournament/Shared/TournamentCellView.swift @@ -67,8 +67,12 @@ struct TournamentCellView: View { .font(.caption) Spacer() if tournament.isPrivate { - Text("privé") - .capsule(foreground: .black, background: .beige) + if displayStyle == .short { + Text("privé") + } else { + Text("privé") + .capsule(foreground: .black, background: .beige) + } } } } else {