Skip to content

Commit

Permalink
fix: dont hide the nav on docs (#134)
Browse files Browse the repository at this point in the history
this check was a mistake, we do want to show the nav on the docs
  • Loading branch information
skylarmb authored Aug 9, 2024
1 parent 2f0c1f0 commit 0695a09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/components/Nav/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ const Nav = () => {
<S.MobileNavButton onClick={toggleNav}>
{isNavOpen ? <BiX size={24} /> : <BiMenu size={24} />}
</S.MobileNavButton>
{!isDocs && <NavLinksAndButton />}
<NavLinksAndButton />
</S.Container>
</S.Nav>
);
Expand Down

0 comments on commit 0695a09

Please sign in to comment.