Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit 74d547e

Browse files
committed
Fix menu
1 parent a024ed9 commit 74d547e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/design-system/organism/blog-menu.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,9 @@ export const BlogMenu: FC<MenuProps> = ({ trackingCategory, pathname }) => {
324324
)}
325325
</MenuButtonContainer>
326326
)}
327-
<Search startSearch={startSearch} setStartSearch={setStartSearch} />
327+
{!shouldOpenMenu && (
328+
<Search startSearch={startSearch} setStartSearch={setStartSearch} />
329+
)}
328330
</NavBar>
329331
</MenuContainer>
330332
{(shouldOpenMenu || startSearch) && (

0 commit comments

Comments
 (0)