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)) ]))