diff options
Diffstat (limited to 'apps/web/app/(dash)/chat/chatWindow.tsx')
| -rw-r--r-- | apps/web/app/(dash)/chat/chatWindow.tsx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/apps/web/app/(dash)/chat/chatWindow.tsx b/apps/web/app/(dash)/chat/chatWindow.tsx index 2be1d6c1..8485d0b2 100644 --- a/apps/web/app/(dash)/chat/chatWindow.tsx +++ b/apps/web/app/(dash)/chat/chatWindow.tsx @@ -91,7 +91,6 @@ function ChatWindow({ const sourcesParsed = sourcesZod.safeParse(sources); if (!sourcesParsed.success) { - console.log(sources); console.error(sourcesParsed.error); toast.error("Something went wrong while getting the sources"); return; @@ -154,9 +153,7 @@ function ChatWindow({ while (!done && reader) { const { value, done: d } = await reader.read(); if (d) { - console.log(chatHistory); setChatHistory((prevChatHistory) => { - console.log(prevChatHistory); createChatObject(threadId, prevChatHistory); return prevChatHistory; }); |