Skip to content

Commit

Permalink
Improve string for accuracy
Browse files Browse the repository at this point in the history
  • Loading branch information
TechnicJelle committed Sep 3, 2024
1 parent 5b03495 commit fab33f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/new_map_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class _NewMapDialogState extends ConsumerState<NewMapDialog> {
autovalidateMode: AutovalidateMode.onUserInteraction,
validator: (field) {
if (selectedTemplate == null) {
return "Can't be empty";
return "Can't be empty or invalid selection";
}
return null;
},
Expand Down

0 comments on commit fab33f3

Please sign in to comment.