feat: trim user input

This commit is contained in:
Ninjdai 2025-08-14 13:32:41 +02:00
parent 821232addc
commit fa7182d75e
4 changed files with 7 additions and 7 deletions

View file

@ -61,7 +61,7 @@ class _CreateConfirmationPopupState extends State<CreateConfirmationPopup> {
return null;
},
onSaved: (newValue) {
name = newValue;
name = newValue?.trim();
},
),
Row(