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 {