fix for dark mode in pop-up notifications, system theme detection

This commit is contained in:
coolcoala
2025-08-03 11:06:19 +03:00
parent 1f7561298c
commit 9abc30b60c
7 changed files with 58 additions and 141 deletions

View File

@@ -1,14 +1,11 @@
import { AppDataProvider } from "./providers/app-data-provider";
import { ThemeProvider } from "@/components/layout/theme-provider";
import Layout from "./pages/_layout";
function App() {
return (
<ThemeProvider>
<AppDataProvider>
<Layout />
</AppDataProvider>
</ThemeProvider>
<AppDataProvider>
<Layout />
</AppDataProvider>
);
}
export default App;