diff --git a/ui/app/(prowler)/lighthouse/_actions/lighthouse-v2.ts b/ui/app/(prowler)/lighthouse/_actions/lighthouse-v2.ts index ec93fbba2c..2cf3c98a7b 100644 --- a/ui/app/(prowler)/lighthouse/_actions/lighthouse-v2.ts +++ b/ui/app/(prowler)/lighthouse/_actions/lighthouse-v2.ts @@ -416,7 +416,7 @@ function toErrorResult( document: JsonApiDocument, ): Extract, { error: string }> { return { - error: document.error ?? "Unexpected Lighthouse response.", + error: document.error ?? "Unexpected Lighthouse AI response.", errors: document.errors, status: document.status, }; diff --git a/ui/app/(prowler)/lighthouse/_components/chat/empty-state.tsx b/ui/app/(prowler)/lighthouse/_components/chat/empty-state.tsx index 888a2d1b44..b2d83b50ab 100644 --- a/ui/app/(prowler)/lighthouse/_components/chat/empty-state.tsx +++ b/ui/app/(prowler)/lighthouse/_components/chat/empty-state.tsx @@ -76,7 +76,7 @@ export function ChatEmptyState({
- Try Lighthouse for... + Try Lighthouse AI for... {LIGHTHOUSE_V2_SUGGESTIONS.map((suggestion) => { const Icon = suggestion.icon; @@ -94,7 +94,10 @@ export function ChatEmptyState({ ); })} diff --git a/ui/app/(prowler)/lighthouse/_components/chat/lighthouse-v2-chat-page.test.tsx b/ui/app/(prowler)/lighthouse/_components/chat/lighthouse-v2-chat-page.test.tsx index 7ece404e3c..333c4d668c 100644 --- a/ui/app/(prowler)/lighthouse/_components/chat/lighthouse-v2-chat-page.test.tsx +++ b/ui/app/(prowler)/lighthouse/_components/chat/lighthouse-v2-chat-page.test.tsx @@ -162,7 +162,7 @@ describe("LighthouseV2ChatPage", () => { // Then expect(screen.queryByRole("combobox")).not.toBeInTheDocument(); expect( - screen.getByRole("link", { name: "Lighthouse settings" }), + screen.getByRole("link", { name: "Lighthouse AI settings" }), ).toHaveAttribute("href", "/lighthouse/settings"); }); diff --git a/ui/app/(prowler)/lighthouse/_components/config/configuration-form.tsx b/ui/app/(prowler)/lighthouse/_components/config/configuration-form.tsx index 946c63cf2f..9ca7ab7be3 100644 --- a/ui/app/(prowler)/lighthouse/_components/config/configuration-form.tsx +++ b/ui/app/(prowler)/lighthouse/_components/config/configuration-form.tsx @@ -199,7 +199,7 @@ export function LighthouseV2ConfigurationForm({

{configuration ? "Stored provider configuration. Rotate credentials only when needed." - : "Create provider configuration before Lighthouse can use this model family."} + : "Create provider configuration before Lighthouse AI can use this model family."}

@@ -275,7 +275,7 @@ export function LighthouseV2ConfigurationForm({ } title="Business context" - description="Short operational context Lighthouse should consider while answering." + description="Short operational context Lighthouse AI should consider while answering." >
@@ -335,8 +335,8 @@ export function LighthouseV2ConfigurationForm({
diff --git a/ui/app/(prowler)/lighthouse/_components/config/empty-state.tsx b/ui/app/(prowler)/lighthouse/_components/config/empty-state.tsx index 465c9b68e2..6094b2f97c 100644 --- a/ui/app/(prowler)/lighthouse/_components/config/empty-state.tsx +++ b/ui/app/(prowler)/lighthouse/_components/config/empty-state.tsx @@ -12,10 +12,10 @@ export function LighthouseV2EmptyState({ error }: { error?: string }) {

- No Lighthouse providers available + No Lighthouse AI providers available

- Cloud did not return supported providers for Lighthouse + Cloud did not return supported providers for Lighthouse AI configuration.

diff --git a/ui/app/(prowler)/lighthouse/_components/config/lighthouse-v2-config-page.test.tsx b/ui/app/(prowler)/lighthouse/_components/config/lighthouse-v2-config-page.test.tsx index e37fb4d373..06872c4a95 100644 --- a/ui/app/(prowler)/lighthouse/_components/config/lighthouse-v2-config-page.test.tsx +++ b/ui/app/(prowler)/lighthouse/_components/config/lighthouse-v2-config-page.test.tsx @@ -113,7 +113,7 @@ describe("LighthouseV2ConfigPage", () => { const openAIProvider = screen.getByRole("button", { name: "OpenAI" }); const settingsCard = screen.getByRole("region", { - name: "Lighthouse settings", + name: "Lighthouse AI settings", }); const settingsSeparator = container.querySelector( '[data-slot="settings-separator"]', diff --git a/ui/app/(prowler)/lighthouse/_components/config/lighthouse-v2-config-page.tsx b/ui/app/(prowler)/lighthouse/_components/config/lighthouse-v2-config-page.tsx index c5d6b42e79..2bd9e8096c 100644 --- a/ui/app/(prowler)/lighthouse/_components/config/lighthouse-v2-config-page.tsx +++ b/ui/app/(prowler)/lighthouse/_components/config/lighthouse-v2-config-page.tsx @@ -75,7 +75,8 @@ export function LighthouseV2ConfigPage({ setSelectedProvider(configuration.providerType); setFeedback({ title: "Configuration saved.", - description: "Lighthouse can use this provider after it tests cleanly.", + description: + "Lighthouse AI can use this provider after it tests cleanly.", variant: FEEDBACK_VARIANT.SUCCESS, }); }; @@ -88,7 +89,7 @@ export function LighthouseV2ConfigPage({ configuration.connected ? { title: "Connection successful.", - description: "Lighthouse can send messages with this provider.", + description: "Lighthouse AI can send messages with this provider.", variant: FEEDBACK_VARIANT.SUCCESS, } : { @@ -106,7 +107,7 @@ export function LighthouseV2ConfigPage({ ); setFeedback({ title: "Configuration removed.", - description: "This provider is no longer available for Lighthouse.", + description: "This provider is no longer available for Lighthouse AI.", variant: FEEDBACK_VARIANT.INFO, }); }; @@ -120,7 +121,7 @@ export function LighthouseV2ConfigPage({ variant="base" padding="none" role="region" - aria-label="Lighthouse settings" + aria-label="Lighthouse AI settings" className="min-h-[calc(100dvh-6.5rem)] w-full gap-0 overflow-hidden" > {feedback && ( diff --git a/ui/app/(prowler)/lighthouse/_components/history/lighthouse-v2-session-history.tsx b/ui/app/(prowler)/lighthouse/_components/history/lighthouse-v2-session-history.tsx index 05ae1278ff..62d35e57f1 100644 --- a/ui/app/(prowler)/lighthouse/_components/history/lighthouse-v2-session-history.tsx +++ b/ui/app/(prowler)/lighthouse/_components/history/lighthouse-v2-session-history.tsx @@ -62,7 +62,7 @@ export function LighthouseV2SessionHistory({ >
{ const message = isConfigured - ? "Use Lighthouse to review your findings and gain insights" - : "Enable Lighthouse to secure your cloud with AI insights"; + ? "Use Lighthouse AI to review your findings and gain insights" + : "Enable Lighthouse AI to secure your cloud with AI insights"; const href = isConfigured ? "/lighthouse" : "/lighthouse/settings"; return ; diff --git a/ui/components/lighthouse-v1/lighthouse-settings.tsx b/ui/components/lighthouse-v1/lighthouse-settings.tsx index 48b4bf69d3..f7af4ee89d 100644 --- a/ui/components/lighthouse-v1/lighthouse-settings.tsx +++ b/ui/components/lighthouse-v1/lighthouse-settings.tsx @@ -88,13 +88,13 @@ export const LighthouseSettings = () => { } else { toast({ title: "Success", - description: "Lighthouse settings saved successfully", + description: "Lighthouse AI settings saved successfully", }); } } catch (error) { toast({ title: "Error", - description: "Failed to save Lighthouse settings: " + String(error), + description: "Failed to save Lighthouse AI settings: " + String(error), variant: "destructive", }); } finally {