Skip to content

Commit

Permalink
fix(auth): disable autocorrect and it's suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
prateekmedia committed Jun 12, 2024
1 parent 3d46b01 commit b273ac3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions auth/lib/ui/home_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,8 @@ class _HomePageState extends State<HomePage> {
title: !_showSearchBox
? const Text('Ente Auth')
: TextField(
autocorrect: false,
enableSuggestions: false,
focusNode: searchInputFocusNode,
autofocus: _searchText.isEmpty,
controller: _textController,
Expand Down

0 comments on commit b273ac3

Please sign in to comment.