remove dots after sentences
All checks were successful
Pull Request Pipeline / test (pull_request) Successful in 2m1s
Pull Request Pipeline / lint (pull_request) Successful in 2m4s

This commit is contained in:
2025-12-24 22:53:17 +01:00
parent b0a5145490
commit 12856342a8
2 changed files with 5 additions and 5 deletions

View File

@@ -179,10 +179,10 @@ class _PlayerSelectionState extends State<PlayerSelection> {
icon: Icons.info,
title: 'Info',
message: allPlayers.isEmpty
? 'No players created yet.'
? 'No players created yet'
: (selectedPlayers.length == allPlayers.length)
? 'No more players to add.'
: 'No players found with that name.',
? 'No more players to add'
: 'No players found with that name',
),
child: ListView.builder(
itemCount: suggestedPlayers.length,