From 3cfdde809a3d884918ff7ca2d8540929129830c1 Mon Sep 17 00:00:00 2001 From: Danny Date: Tue, 6 Jan 2026 14:46:10 -0600 Subject: [PATCH] fix: Docker compatibility --- nginx.config => nginx.conf | 0 src/components/chat/ChatInput.tsx | 2 +- src/lib/api.ts | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename nginx.config => nginx.conf (100%) diff --git a/nginx.config b/nginx.conf similarity index 100% rename from nginx.config rename to nginx.conf diff --git a/src/components/chat/ChatInput.tsx b/src/components/chat/ChatInput.tsx index 68fca02..0979521 100644 --- a/src/components/chat/ChatInput.tsx +++ b/src/components/chat/ChatInput.tsx @@ -1,4 +1,4 @@ -import { useState, KeyboardEvent } from 'react' +import { useState, type KeyboardEvent } from 'react' import { Input } from '@/components/ui/input' import { Button } from '@/components/ui/button' import { Send } from 'lucide-react' diff --git a/src/lib/api.ts b/src/lib/api.ts index 777c03e..f7fd42b 100644 --- a/src/lib/api.ts +++ b/src/lib/api.ts @@ -34,7 +34,7 @@ const MOCK_RESPONSES = { // Mock streaming function async function* mockChatStream( - question: string, + _question: string, mode: ChatMode ): AsyncGenerator { const sessionId = crypto.randomUUID()