There was an error while loading. Please reload this page.
1 parent ce62433 commit 6a22223Copy full SHA for 6a22223
1 file changed
apps/frontend/app/root.tsx
@@ -20,12 +20,14 @@ export function Layout({ children }: { children: React.ReactNode }) {
20
<meta charSet="utf-8" />
21
<meta name="viewport" content="width=device-width, initial-scale=1" />
22
23
- <ColorSchemeScript />
+ <ColorSchemeScript defaultColorScheme="auto" />
24
<Meta />
25
<Links />
26
</head>
27
<body>
28
- <MantineProvider theme={theme}>{children}</MantineProvider>
+ <MantineProvider defaultColorScheme="auto" theme={theme}>
29
+ {children}
30
+ </MantineProvider>
31
32
<ScrollRestoration />
33
<Scripts />
0 commit comments