Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
polubis committed May 29, 2024
1 parent 2ae7143 commit 48e39ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const Navigation = ({ className, children }: NavigationProps) => {
disabled={theme === null}
onClick={() => set(theme === `light` ? `dark` : `light`)}
>
{theme === `light` ? <BiMoon /> : <BiSun />}
{theme === `dark` ? <BiSun /> : <BiMoon />}
</Button>
)}
</ThemeProvider>
Expand Down

0 comments on commit 48e39ed

Please sign in to comment.