about summary refs log tree commit diff
path: root/src/screens/Search/index.tsx
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2025-04-04 10:30:12 -0500
committerGitHub <noreply@github.com>2025-04-04 08:30:12 -0700
commit94bc677ef5ffdf69fd952de41a59d8b5aac9a360 (patch)
treeb2482a3ad719a1d5dac7e2f3b03673ff12da57d1 /src/screens/Search/index.tsx
parent148bfa803d3116dfaf6513ca947e585d8d3bfc78 (diff)
downloadvoidsky-94bc677ef5ffdf69fd952de41a59d8b5aac9a360.tar.zst
Rename search to explore in titles and links (#8116)
* Rename search to explore in titles and links

* Conditionally use Explore
Diffstat (limited to 'src/screens/Search/index.tsx')
-rw-r--r--src/screens/Search/index.tsx8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/screens/Search/index.tsx b/src/screens/Search/index.tsx
index 429f1e5c7..ba04ebb20 100644
--- a/src/screens/Search/index.tsx
+++ b/src/screens/Search/index.tsx
@@ -9,5 +9,11 @@ export function SearchScreen(
 ) {
   const queryParam = props.route?.params?.q ?? ''
 
-  return <SearchScreenShell queryParam={queryParam} testID="searchScreen" />
+  return (
+    <SearchScreenShell
+      queryParam={queryParam}
+      testID="searchScreen"
+      isExplore
+    />
+  )
 }