Uppdate AppImage

This commit is contained in:
MacRimi
2025-11-07 12:37:11 +01:00
parent 06b81f2b64
commit 246c1674d1
3 changed files with 5 additions and 145 deletions

View File

@@ -3,7 +3,6 @@ import type { Metadata } from "next"
import { GeistSans } from "geist/font/sans"
import { GeistMono } from "geist/font/mono"
import { ThemeProvider } from "../components/theme-provider"
import { PollingConfigProvider } from "../lib/polling-config"
import { Suspense } from "react"
import "./globals.css"
@@ -38,7 +37,7 @@ export default function RootLayout({
<body className={`${GeistSans.variable} ${GeistMono.variable} antialiased bg-background text-foreground`}>
<Suspense fallback={<div>Loading...</div>}>
<ThemeProvider attribute="class" defaultTheme="dark" enableSystem disableTransitionOnChange>
<PollingConfigProvider>{children}</PollingConfigProvider>
{children}
</ThemeProvider>
</Suspense>
</body>