alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
feat: remove auto theme switch
author
Pouria Delfanazari
date
8 months ago
(Nov 5, 2025, 4:19 PM -0800)
commit
59152b14
59152b141330fe50844424bdac79c7a05a6fe491
parent
09debb9d
09debb9d54c6165302db11d139e3774c0251cb31
+2
-2
2 changed files
Expand all
Collapse all
Unified
Split
src
webapp
app
layout.tsx
providers
mantine.tsx
+1
-1
src/webapp/app/layout.tsx
View file
Reviewed
···
26
26
{...mantineHtmlProps}
27
27
>
28
28
<head>
29
29
-
<ColorSchemeScript defaultColorScheme="light" />
29
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
View file
Reviewed
···
12
12
13
13
export default function MantineProvider(props: Props) {
14
14
return (
15
15
-
<BaseProvider theme={theme} defaultColorScheme="light">
15
15
+
<BaseProvider theme={theme} forceColorScheme="light">
16
16
<Notifications position="bottom-right" />
17
17
{props.children}
18
18
</BaseProvider>