A social knowledge tool for researchers built on ATProto

feat: remove auto theme switch

+2 -2
+1 -1
src/webapp/app/layout.tsx
··· 26 26 {...mantineHtmlProps} 27 27 > 28 28 <head> 29 - <ColorSchemeScript defaultColorScheme="light" /> 29 + <ColorSchemeScript forceColorScheme="light" /> 30 30 </head> 31 31 <body className={GlobalStyles.main}> 32 32 <Providers>{children}</Providers>
+1 -1
src/webapp/providers/mantine.tsx
··· 12 12 13 13 export default function MantineProvider(props: Props) { 14 14 return ( 15 - <BaseProvider theme={theme} defaultColorScheme="light"> 15 + <BaseProvider theme={theme} forceColorScheme="light"> 16 16 <Notifications position="bottom-right" /> 17 17 {props.children} 18 18 </BaseProvider>