fix: actually use light theme instead of compact theme

This commit is contained in:
Vincent 2025-01-20 13:13:02 +01:00
parent 05a7ec9a82
commit 3d6bb4ac31
No known key found for this signature in database
GPG Key ID: 056662E78D70E358

View File

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