diff --git a/chatdesk-ui/app/[locale]/layout.tsx b/chatdesk-ui/app/[locale]/layout.tsx index 7ba7cdf..3ba7d01 100644 --- a/chatdesk-ui/app/[locale]/layout.tsx +++ b/chatdesk-ui/app/[locale]/layout.tsx @@ -10,7 +10,7 @@ import { cookies } from "next/headers" import { ReactNode } from "react" import "./globals.css" import { Suspense } from "react" -import { RuntimeEnvScript } from "@/components/utility/runtime-env-script" +import { RuntimeEnvScript } from "@/components/utility/runtime-env-provider" const inter = Inter({ subsets: ["latin"] }) @@ -109,22 +109,20 @@ export default async function RootLayout({ - {/* */} - - - - -
- {data.session ? {children} : children} -
-
-
-
- {/*
*/} + + + + +
+ {data.session ? {children} : children} +
+
+
+
) diff --git a/chatdesk-ui/components/utility/runtime-env-script.tsx b/chatdesk-ui/components/utility/runtime-env-provider.tsx similarity index 100% rename from chatdesk-ui/components/utility/runtime-env-script.tsx rename to chatdesk-ui/components/utility/runtime-env-provider.tsx