diff options
author | Aryan Goharzad <arrygoo@gmail.com> | 2023-01-20 14:43:28 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-20 13:43:28 -0600 |
commit | 06e41167d05a26befb14b9742f4fc4ef3833d35d (patch) | |
tree | 53b1dea4922903ca91775980b6cfb1f0adea05e3 /src/view/screens/Search.tsx | |
parent | 2fce1637b4ae01667da8ceafaa07a6266ab88450 (diff) | |
download | voidsky-06e41167d05a26befb14b9742f4fc4ef3833d35d.tar.zst |
Lints some errors and warnings (#76)
Diffstat (limited to 'src/view/screens/Search.tsx')
-rw-r--r-- | src/view/screens/Search.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/screens/Search.tsx b/src/view/screens/Search.tsx index 82586e829..385489c4b 100644 --- a/src/view/screens/Search.tsx +++ b/src/view/screens/Search.tsx @@ -33,7 +33,7 @@ export const Search = ({navIdx, visible, params}: ScreenParams) => { if (visible) { store.shell.setMinimalShellMode(false) autocompleteView.setup() - store.nav.setTitle(navIdx, `Search`) + store.nav.setTitle(navIdx, 'Search') } }, [store, visible, name]) |