diff --git a/chatdesk-ui/app/[locale]/layout.tsx b/chatdesk-ui/app/[locale]/layout.tsx
index 9d79312..a82213d 100644
--- a/chatdesk-ui/app/[locale]/layout.tsx
+++ b/chatdesk-ui/app/[locale]/layout.tsx
@@ -122,38 +122,38 @@ export default async function RootLayout({
//console.log("[layout.tsx]..............current locale: ", {locale});
- // return (
- //
- //
- //
- //
- //
- //
- // {data.session ? {children} : children}
- //
- //
- //
- //
- //
- // )
+ return (
+
+
+
+
+
+
+ {data.session ? {children} : children}
+
+
+
+
+
+ )
- return (
-
-
-
-
- {data.session ? {children} : children}
-
-
-
- )
+ // return (
+ //
+ //
+ //
+ //
+ // {data.session ? {children} : children}
+ //
+ //
+ //
+ // )
}
diff --git a/chatdesk-ui/pages/_document.tsx b/chatdesk-ui/pages/_document.tsx
deleted file mode 100644
index f20720a..0000000
--- a/chatdesk-ui/pages/_document.tsx
+++ /dev/null
@@ -1,15 +0,0 @@
-// _document.tsx
-
-import { Html, Head, Main, NextScript } from 'next/document'
-
-export default function Document() {
- return (
-
-
-
-
-
-
- )
-}