removed double quotes
All checks were successful
Pull Request Pipeline / test (pull_request) Successful in 2m19s
Pull Request Pipeline / lint (pull_request) Successful in 2m23s

This commit is contained in:
2026-01-01 19:15:57 +01:00
parent 5ee0d59377
commit db30b0fd5a

View File

@@ -31,7 +31,7 @@ class _CreateMatchViewState extends State<CreateMatchView> {
/// Controller for the match name input field
final TextEditingController _matchNameController = TextEditingController();
String hintText = "Match Name";
String hintText = 'Match Name';
/// List of all groups from the database
List<Group> groupsList = [];
@@ -159,7 +159,7 @@ class _CreateMatchViewState extends State<CreateMatchView> {
(r) => r.$1 == selectedRuleset,
);
} else {
hintText = "Match Name";
hintText = 'Match Name';
selectedRuleset = null;
}
});