Skip to content

Commit

Permalink
Remove autofocus for local name field
Browse files Browse the repository at this point in the history
  • Loading branch information
adzialocha committed May 30, 2024
1 parent ae5423c commit 3dafb7e
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions packages/app/lib/ui/widgets/local_name_field.dart
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,7 @@ class _LocalNameFieldState extends State<LocalNameField> {
: null;

return LocalNameAutocomplete(
initialValue: initialValue,
// Make sure that we focus the text field and show the keyboard as soon
// as we've entered "edit mode"
autofocus: true,
onSubmit: _submit,
onChanged: _changeValue);
initialValue: initialValue, onSubmit: _submit, onChanged: _changeValue);
}

@override
Expand Down

0 comments on commit 3dafb7e

Please sign in to comment.