diff --git a/ui/app/(prowler)/lighthouse/config/layout.tsx b/ui/app/(prowler)/lighthouse/config/layout.tsx
deleted file mode 100644
index 270ce2529c..0000000000
--- a/ui/app/(prowler)/lighthouse/config/layout.tsx
+++ /dev/null
@@ -1,19 +0,0 @@
-import "@/styles/globals.css";
-
-import React from "react";
-
-import { ContentLayout } from "@/components/ui";
-
-interface ChatbotConfigLayoutProps {
- children: React.ReactNode;
-}
-
-export default function ChatbotConfigLayout({
- children,
-}: ChatbotConfigLayoutProps) {
- return (
-
- {children}
-
- );
-}
diff --git a/ui/app/(prowler)/lighthouse/config/page.tsx b/ui/app/(prowler)/lighthouse/config/page.tsx
index ebf1423009..5872f92d12 100644
--- a/ui/app/(prowler)/lighthouse/config/page.tsx
+++ b/ui/app/(prowler)/lighthouse/config/page.tsx
@@ -1,5 +1,6 @@
import { getLighthouseConfig } from "@/actions/lighthouse";
import { ChatbotConfig } from "@/components/lighthouse";
+import { ContentLayout } from "@/components/ui";
export const dynamic = "force-dynamic";
@@ -21,6 +22,11 @@ export default async function ChatbotConfigPage() {
const configExists = !!response;
return (
-
+
+
+
);
}