about summary refs log tree commit diff
path: root/src/screens/Search/index.tsx
diff options
context:
space:
mode:
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
+    />
+  )
 }