Fix sorting of order table, and keepOnline to thefront

This commit is contained in:
g
2025-02-09 01:43:24 +00:00
parent dc30150760
commit 7ec17cfd73
3 changed files with 32 additions and 6 deletions

View File

@@ -1,7 +1,8 @@
import { Inter } from "next/font/google"
import "./globals.css"
import { ThemeProvider } from "@/components/layout/theme-provider"
import type React from "react" // Import React
import type React from "react"
import KeepOnline from "@/components/KeepOnline"
const inter = Inter({ subsets: ["latin"] })
@@ -19,6 +20,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<body className={inter.className}>
<ThemeProvider attribute="class" defaultTheme="dark" enableSystem disableTransitionOnChange>
<KeepOnline />
{children}
</ThemeProvider>
</body>