fix lint
All checks were successful
Pull Request Pipeline / test (pull_request) Successful in 47s
Pull Request Pipeline / lint (pull_request) Successful in 50s

This commit is contained in:
2026-05-10 16:28:08 +02:00
parent 3c5c0dbf20
commit 8076f082bc
2 changed files with 2 additions and 2 deletions

View File

@@ -326,7 +326,7 @@ class _MatchDetailViewState extends State<MatchDetailView> {
),
Flexible(
child: Container(
padding: EdgeInsets.only(left: 40),
padding: const EdgeInsets.only(left: 40),
child: Text(
match.mvp.map((player) => player.name).join(', '),
style: const TextStyle(

View File

@@ -50,7 +50,7 @@ class _MatchResultViewState extends State<MatchResultView> {
Player? _selectedPlayer;
/// Currently selected winners (multiple winners)
Set<Player> _selectedWinners = {};
final Set<Player> _selectedWinners = {};
@override
void initState() {