diff options
Diffstat (limited to 'src/screens/Search/Shell.tsx')
-rw-r--r-- | src/screens/Search/Shell.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
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({ )} <Layout.Header.Content align="left"> <Layout.Header.TitleText> - <Trans>Search</Trans> + {isExplore ? <Trans>Explore</Trans> : <Trans>Search</Trans>} </Layout.Header.TitleText> </Layout.Header.Content> {showFilters ? ( |