diff --git a/app/(docs)/@chat/chat/[chatId]/chatArea.tsx b/app/(docs)/@chat/chat/[chatId]/chatArea.tsx index 80c28aba..7b8c7e7f 100644 --- a/app/(docs)/@chat/chat/[chatId]/chatArea.tsx +++ b/app/(docs)/@chat/chat/[chatId]/chatArea.tsx @@ -1,6 +1,7 @@ "use client"; import { ChatAreaStateUpdater } from "@/(docs)/chatAreaState"; +import { useStreamingChatContext } from "@/(docs)/streamingChatContext"; import { deleteChatAction } from "@/actions/deleteChat"; import { ChatWithMessages } from "@/lib/chatHistory"; import { LanguageEntry, MarkdownSection, PageEntry } from "@/lib/docs"; @@ -11,7 +12,10 @@ import Link from "next/link"; import { useRouter } from "next/navigation"; import { ReactNode } from "react"; -export function ChatAreaContainer(props: { chatId: string; children: ReactNode }) { +export function ChatAreaContainer(props: { + chatId: string; + children: ReactNode; +}) { return (