Skip to content

Commit

Permalink
style(lint): fix prettier issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusfg7 committed Feb 28, 2024
1 parent f5a8a31 commit 091975d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/_components/header/toggle-theme.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function ToggleTheme() {
as="button"
onClick={() => setTheme(theme)}
data-isThemeActive={currTheme === theme}
className="flex w-full items-center justify-start gap-4 rounded-xl p-2 text-lg leading-none hover:bg-neutral-100 data-[isThemeActive='true']:font-bold hover:dark:bg-neutral-1000"
className="flex w-full items-center justify-start gap-4 rounded-xl p-2 text-lg leading-none data-[isThemeActive='true']:font-bold hover:bg-neutral-100 hover:dark:bg-neutral-1000"
{...props}
>
{theme === 'light' && (
Expand Down

0 comments on commit 091975d

Please sign in to comment.