Skip to content

Commit

Permalink
chore: expose signin
Browse files Browse the repository at this point in the history
  • Loading branch information
ThEditor committed Sep 17, 2024
1 parent 5f49ae5 commit 11be010
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export default function Navbar({ notLanding = false }: NavbarProps) {
LEADERBOARD
</LinkButton>
)}
{notLanding && (
{(
<LinkButton href="/signin" variant="primary" onClick={handleSign}>
{isSignedIn ? "SIGNOUT" : "SIGNIN"}
</LinkButton>
Expand Down Expand Up @@ -143,7 +143,7 @@ export default function Navbar({ notLanding = false }: NavbarProps) {
LEADERBOARD
</LinkButton>
)}
{notLanding && (
{(
<LinkButton
href="/signin"
variant="primary"
Expand Down

0 comments on commit 11be010

Please sign in to comment.