Removed print

This commit is contained in:
2026-01-10 15:54:41 +01:00
parent 2ef671884d
commit d34990ed50

View File

@@ -214,8 +214,6 @@ class _HomeViewState extends State<HomeView> {
Future<void> updatedWinnerinRecentMatches(String matchId) async {
final db = Provider.of<AppDatabase>(context, listen: false);
final winner = await db.matchDao.getWinner(matchId: matchId);
print('Winner for match $matchId: ${winner?.name}');
final matchIndex = recentMatches.indexWhere((match) => match.id == matchId);
if (matchIndex != -1) {
setState(() {