🥅 fix: handle logout failure warning

This commit is contained in:
2026-02-18 12:27:24 +07:00
parent 4fc87b7134
commit 0c9ca45b36
3 changed files with 16 additions and 9 deletions

View File

@ -1,6 +1,7 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono, Inter } from "next/font/google";
import "./globals.css";
import { Toaster } from "@/shared/libs/shadcn/ui/sonner";
const inter = Inter({ subsets: ["latin"], variable: "--font-sans" });
@ -29,7 +30,8 @@ export default function RootLayout({
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
<main>{children}</main>
<Toaster />
</body>
</html>
);