260322:1648 Correct Coresspondence / Doing RFA / Correct CI
CI Pipeline / build (push) Failing after 12m41s
Build and Deploy / deploy (push) Failing after 2m44s

This commit is contained in:
admin
2026-03-22 16:48:12 +07:00
parent e5deedb42e
commit 11984bfa29
683 changed files with 105251 additions and 29068 deletions
+14 -17
View File
@@ -1,17 +1,17 @@
// File: app/layout.tsx
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import { cn } from "@/lib/utils";
import QueryProvider from "@/providers/query-provider";
import SessionProvider from "@/providers/session-provider"; // ✅ Import เข้ามา
import { Toaster } from "@/components/ui/sonner";
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import './globals.css';
import { cn } from '@/lib/utils';
import QueryProvider from '@/providers/query-provider';
import SessionProvider from '@/providers/session-provider'; // ✅ Import เข้ามา
import { Toaster } from '@/components/ui/sonner';
const inter = Inter({ subsets: ["latin"] });
const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
title: "LCBP3-DMS",
description: "Document Management System for Laem Chabang Port Phase 3",
title: 'LCBP3-DMS',
description: 'Document Management System for Laem Chabang Port Phase 3',
};
interface RootLayoutProps {
@@ -22,13 +22,10 @@ export default function RootLayout({ children }: RootLayoutProps) {
return (
<html lang="en" suppressHydrationWarning>
<head />
<body
className={cn(
"min-h-screen bg-background font-sans antialiased",
inter.className
)}
>
<SessionProvider> {/* ✅ หุ้มด้วย SessionProvider เป็นชั้นนอกสุด หรือใน body */}
<body className={cn('min-h-screen bg-background font-sans antialiased', inter.className)}>
<SessionProvider>
{' '}
{/* ✅ หุ้มด้วย SessionProvider เป็นชั้นนอกสุด หรือใน body */}
<QueryProvider>
{children}
<Toaster />