Skip to content

Commit 255d03c

Browse files
authored
Merge branch 'master' into staging
2 parents 4e3caec + 553adcc commit 255d03c

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

src/components/Nav/Mobile/MenuFooter.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ const MenuFooter = ({
4242
mt="auto"
4343
>
4444
<Grid templateColumns="repeat(2, 1fr)" w="full">
45-
{/* Temporarily hide search for now until we resolve issues with the API key */}
46-
{/* <FooterButton
45+
<FooterButton
4746
icon={MdSearch}
4847
onClick={() => {
4948
// Workaround to ensure the input for the search modal can have focus
@@ -52,7 +51,7 @@ const MenuFooter = ({
5251
}}
5352
>
5453
<FooterItemText>{t("search")}</FooterItemText>
55-
</FooterButton> */}
54+
</FooterButton>
5655

5756
<FooterButton icon={ThemeIcon} onClick={toggleColorMode}>
5857
<FooterItemText>{t(themeLabelKey)}</FooterItemText>

src/components/Nav/index.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,8 @@ const Nav = () => {
9797
>
9898
<Menu hideBelow="md" sections={linkSections} />
9999
<Flex alignItems="center" /* justifyContent="space-between" */>
100-
{/* Temporarily hide search for now until we resolve issues with the API key */}
101-
{/* <Search {...searchModalDisclosure} /> */}
102-
100+
<Search {...searchModalDisclosure} />
101+
103102
{/* Desktop */}
104103
<HStack hideBelow="md" gap="0">
105104
<IconButton

0 commit comments

Comments
 (0)