diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-12-30 15:12:36 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-12-30 15:12:36 -0600 |
commit | a7a310a06b235abfc52ddae45686a785ae510529 (patch) | |
tree | 7b41dae7ab8faaa33738f32092447e98335f1441 /src | |
parent | 62c6da3b9f592aad6b34800c02bc36523b946bb2 (diff) | |
download | voidsky-a7a310a06b235abfc52ddae45686a785ae510529.tar.zst |
Dont autofocus the search input
Diffstat (limited to 'src')
-rw-r--r-- | src/view/screens/Search.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/view/screens/Search.tsx b/src/view/screens/Search.tsx index 4ab1436a6..5d171c79a 100644 --- a/src/view/screens/Search.tsx +++ b/src/view/screens/Search.tsx @@ -31,7 +31,6 @@ export const Search = ({navIdx, visible, params}: ScreenParams) => { if (visible) { store.shell.setMinimalShellMode(false) autocompleteView.setup() - textInput.current?.focus() store.nav.setTitle(navIdx, `Search`) } }, [store, visible, name]) |