From eedf528a334839309f5b9003e099f1616c6ff985 Mon Sep 17 00:00:00 2001 From: JCBSComputer Date: Wed, 1 Jul 2026 09:46:09 +0200 Subject: [PATCH] Fixed AI --- src/components/ai/ai-chat.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/ai/ai-chat.tsx b/src/components/ai/ai-chat.tsx index f98f202..95d9e68 100644 --- a/src/components/ai/ai-chat.tsx +++ b/src/components/ai/ai-chat.tsx @@ -184,6 +184,9 @@ export const AIChat = forwardRef<{ fillInput: (text: string) => void }, AIChatPr }, ]) }) + }, []) + + useEffect(() => { checkServer() }, [checkServer])