fix: Docker compatibility

This commit is contained in:
Danny 2026-01-06 14:46:10 -06:00
parent 3b650b4423
commit 3cfdde809a
3 changed files with 2 additions and 2 deletions

View File

@ -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'

View File

@ -34,7 +34,7 @@ const MOCK_RESPONSES = {
// Mock streaming function
async function* mockChatStream(
question: string,
_question: string,
mode: ChatMode
): AsyncGenerator<StreamEvent> {
const sessionId = crypto.randomUUID()