diff options
author | Eric Bailey <git@esb.lol> | 2025-04-04 10:30:12 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-04 08:30:12 -0700 |
commit | 94bc677ef5ffdf69fd952de41a59d8b5aac9a360 (patch) | |
tree | b2482a3ad719a1d5dac7e2f3b03673ff12da57d1 /src/screens/Search/index.tsx | |
parent | 148bfa803d3116dfaf6513ca947e585d8d3bfc78 (diff) | |
download | voidsky-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.tsx | 8 |
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 + /> + ) } |