disable system theme for now (to avoid dark mode)

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-04-02 11:36:57 +02:00
parent e518df7cc4
commit 715867678a

View File

@@ -34,9 +34,9 @@ export default function DarkModeToggle({ className }: Props) {
<DropdownMenuItem onClick={() => setTheme('dark')}>
Dark
</DropdownMenuItem>
<DropdownMenuItem onClick={() => setTheme('system')}>
{/* <DropdownMenuItem onClick={() => setTheme('system')}>
System
</DropdownMenuItem>
</DropdownMenuItem> */}
</DropdownMenuContent>
</DropdownMenu>
);