fix: update lighthouse chat page name (#8106)

Co-authored-by: Chandrapal Badshah <12944530+Chan9390@users.noreply.github.com>
This commit is contained in:
Chandrapal Badshah
2025-06-25 16:18:20 +05:30
committed by GitHub
parent 85242c7909
commit 80fd5d1ba6
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ export default async function AIChatbot() {
const isActive = config?.attributes?.is_active ?? false;
return (
<ContentLayout title="Cloud Security Analyst" icon="lucide:bot">
<ContentLayout title="Lighthouse" icon="lucide:bot">
<Chat hasConfig={hasConfig} isActive={isActive} />
</ContentLayout>
);
+2 -2
View File
@@ -135,8 +135,8 @@ export const Chat = ({ hasConfig, isActive }: ChatProps) => {
</h3>
<p className="text-muted-foreground mb-4">
{!hasConfig
? "Please configure your OpenAI API key to use the Lighthouse Cloud Security Analyst."
: "OpenAI API key is invalid. Please update your key to use Lighthouse Cloud Security Analyst."}
? "Please configure your OpenAI API key to use Lighthouse."
: "OpenAI API key is invalid. Please update your key to use Lighthouse."}
</p>
<Link
href="/lighthouse/config"