From 5ea74fbeb2d368deb08e1e8e361e71cbf41e9614 Mon Sep 17 00:00:00 2001 From: Pepe Fagoaga Date: Wed, 4 Jun 2025 12:38:29 +0200 Subject: [PATCH] chore: ignore log error --- ui/components/lighthouse/chatbot-config.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/components/lighthouse/chatbot-config.tsx b/ui/components/lighthouse/chatbot-config.tsx index d39652deba..c2559284fb 100644 --- a/ui/components/lighthouse/chatbot-config.tsx +++ b/ui/components/lighthouse/chatbot-config.tsx @@ -52,6 +52,7 @@ export const ChatbotConfig = ({ useEffect(() => { const subscription = form.watch((value, { name, type }) => { if (name && type) { + // eslint-disable-next-line no-console console.log(`Form value changed: ${name} = ${JSON.stringify(value)}`); } }); @@ -78,9 +79,8 @@ export const ChatbotConfig = ({ setConfigExists(true); toast({ title: "Success", - description: `Lighthouse configuration ${ - configExists ? "updated" : "created" - } successfully`, + description: `Lighthouse configuration ${configExists ? "updated" : "created" + } successfully`, }); } else { throw new Error("Failed to save configuration");