From f7c393fc072fb01b06598ce30447e6220352c6f6 Mon Sep 17 00:00:00 2001 From: Razmig Sarkissian Date: Fri, 28 Feb 2025 23:29:51 +0100 Subject: [PATCH] fix compilation issue post merge --- PadelClub/Views/Tournament/Screen/InscriptionManagerView.swift | 2 +- PadelClub/Views/Tournament/Shared/TournamentCellView.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PadelClub/Views/Tournament/Screen/InscriptionManagerView.swift b/PadelClub/Views/Tournament/Screen/InscriptionManagerView.swift index af7383c..af5f70c 100644 --- a/PadelClub/Views/Tournament/Screen/InscriptionManagerView.swift +++ b/PadelClub/Views/Tournament/Screen/InscriptionManagerView.swift @@ -856,7 +856,7 @@ struct InscriptionManagerView: View { } RowButtonView("Rafraîchir les inscriptions en ligne") { - await _refreshList() + await _refreshList(forced: true) } } } header: { diff --git a/PadelClub/Views/Tournament/Shared/TournamentCellView.swift b/PadelClub/Views/Tournament/Shared/TournamentCellView.swift index 5914769..589ac6e 100644 --- a/PadelClub/Views/Tournament/Shared/TournamentCellView.swift +++ b/PadelClub/Views/Tournament/Shared/TournamentCellView.swift @@ -172,7 +172,7 @@ struct TournamentCellView: View { HStack { Spacer() if value > 0 { - Text("(dont " + value.formatted() + " équipe\(value.pluralSuffix) inscrite\(value.pluralSuffix) en ligne)") + Text("(dont " + value.formatted() + " inscrite\(value.pluralSuffix) en ligne)") } } }