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");