Skip to content

Commit 88055c8

Browse files
authored
Merge branch 'master' into staging
2 parents 7b7b351 + 823fc59 commit 88055c8

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

src/components/Nav/Mobile/MenuFooter.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,9 @@ const MenuFooter = ({
4141
py={0}
4242
mt="auto"
4343
>
44-
<Grid templateColumns="repeat(3, 1fr)" w="full">
45-
<FooterButton
44+
<Grid templateColumns="repeat(2, 1fr)" w="full">
45+
{/* Temporarily hide search for now until we resolve issues with the API key */}
46+
{/* <FooterButton
4647
icon={MdSearch}
4748
onClick={() => {
4849
// Workaround to ensure the input for the search modal can have focus
@@ -51,7 +52,8 @@ const MenuFooter = ({
5152
}}
5253
>
5354
<FooterItemText>{t("search")}</FooterItemText>
54-
</FooterButton>
55+
</FooterButton> */}
56+
5557
<FooterButton icon={ThemeIcon} onClick={toggleColorMode}>
5658
<FooterItemText>{t(themeLabelKey)}</FooterItemText>
5759
</FooterButton>

src/components/Nav/index.tsx

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

0 commit comments

Comments
 (0)