From 77b551715fe6abca3b1bdc2481a0f215a87f206a Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Wed, 16 Jul 2025 14:28:49 +0200 Subject: [PATCH] change not equal to greater than --- lib/presentation/views/round_view.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/presentation/views/round_view.dart b/lib/presentation/views/round_view.dart index 2506cde..a7ddde1 100644 --- a/lib/presentation/views/round_view.dart +++ b/lib/presentation/views/round_view.dart @@ -198,12 +198,12 @@ class _RoundViewState extends State { ), Visibility( visible: - index == 0 && widget.roundNumber != 1, + index == 0 && widget.roundNumber > 1, child: const SizedBox(width: 10), ), Visibility( visible: - index == 0 && widget.roundNumber != 1, + index == 0 && widget.roundNumber > 1, child: const Icon(FontAwesomeIcons.medal, size: 15)) ]))