From 7337767dd290c26e47720f27eb7cfa6914c70027 Mon Sep 17 00:00:00 2001 From: Raz Date: Wed, 18 Dec 2024 18:28:15 +0100 Subject: [PATCH] wip --- PadelClub/Views/Tournament/Screen/InscriptionManagerView.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PadelClub/Views/Tournament/Screen/InscriptionManagerView.swift b/PadelClub/Views/Tournament/Screen/InscriptionManagerView.swift index 1589349..f301acd 100644 --- a/PadelClub/Views/Tournament/Screen/InscriptionManagerView.swift +++ b/PadelClub/Views/Tournament/Screen/InscriptionManagerView.swift @@ -878,6 +878,7 @@ struct InscriptionManagerView: View { gatheringInProgress = true gathered = 0 gatheringDone = false + print("total", unrankedUnsourced) for player in unrankedUnsourced { do { if let playerData = try await player.fetchUnrankPlayerData() { @@ -888,6 +889,7 @@ struct InscriptionManagerView: View { try tournamentStore.playerRegistrations.addOrUpdate(instance: player) await MainActor.run { gathered += 1 + print("gathered", gathered) } } } catch {