Merge pull request #62 from vinceh121/bugfix/light-theme

fix: actually use light theme instead of compact theme
This commit is contained in:
Maël Gangloff
2025-01-20 18:56:41 +01:00
committed by GitHub

View File

@@ -70,7 +70,7 @@ export default function App(): React.ReactElement {
return (
<ConfigProvider
theme={{
algorithm: darkMode ? theme.darkAlgorithm : theme.compactAlgorithm
algorithm: darkMode ? theme.darkAlgorithm : undefined
}}
>
<AuthenticatedContext.Provider value={contextValue}>