diff --git a/apps/weblibre/lib/features/geckoview/features/search/presentation/widgets/search_field.dart b/apps/weblibre/lib/features/geckoview/features/search/presentation/widgets/search_field.dart index d176fa42..28a3c950 100644 --- a/apps/weblibre/lib/features/geckoview/features/search/presentation/widgets/search_field.dart +++ b/apps/weblibre/lib/features/geckoview/features/search/presentation/widgets/search_field.dart @@ -133,7 +133,7 @@ class SearchField extends HookConsumerWidget { controller: textEditingController, suggestion: suggestion.value, acceptSuggestionOnSubmit: acceptSuggestionOnSubmit, - enableSuggestions: false, + enableSuggestions: true, autocorrect: false, enableIMEPersonalizedLearning: !incognitoEnabled, focusNode: safeFocusNode, diff --git a/apps/weblibre/lib/presentation/widgets/auto_suggest_text_field.dart b/apps/weblibre/lib/presentation/widgets/auto_suggest_text_field.dart index 7e41d915..807ad9cb 100644 --- a/apps/weblibre/lib/presentation/widgets/auto_suggest_text_field.dart +++ b/apps/weblibre/lib/presentation/widgets/auto_suggest_text_field.dart @@ -87,7 +87,7 @@ class AutoSuggestTextField extends HookWidget { this.onTapOutside, this.onTap, this.onSuggestionDismiss, - this.enableSuggestions = false, + this.enableSuggestions = true, this.autocorrect = false, this.textFieldKey, this.acceptSuggestionOnSubmit = false,