From 94bc677ef5ffdf69fd952de41a59d8b5aac9a360 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Fri, 4 Apr 2025 10:30:12 -0500 Subject: Rename search to explore in titles and links (#8116) * Rename search to explore in titles and links * Conditionally use Explore --- src/screens/Search/Shell.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/screens/Search/Shell.tsx') diff --git a/src/screens/Search/Shell.tsx b/src/screens/Search/Shell.tsx index e930b8289..e48f3d455 100644 --- a/src/screens/Search/Shell.tsx +++ b/src/screens/Search/Shell.tsx @@ -55,12 +55,14 @@ export function SearchScreenShell({ fixedParams, navButton = 'menu', inputPlaceholder, + isExplore, }: { queryParam: string testID: string fixedParams?: Params navButton?: 'back' | 'menu' inputPlaceholder?: string + isExplore?: boolean }) { const t = useTheme() const {gtMobile} = useBreakpoints() @@ -302,7 +304,7 @@ export function SearchScreenShell({ )} - Search + {isExplore ? Explore : Search} {showFilters ? ( -- cgit 1.4.1