Rename search to explore in titles and links (#8116)

* Rename search to explore in titles and links

* Conditionally use Explore
This commit is contained in:
Eric Bailey
2025-04-04 10:30:12 -05:00
committed by GitHub
parent 148bfa803d
commit 94bc677ef5
5 changed files with 21 additions and 13 deletions
+7 -1
View File
@@ -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
/>
)
}