aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/(dash)/chat/chatWindow.tsx
diff options
context:
space:
mode:
authorDhravya <[email protected]>2024-06-22 18:23:05 -0500
committerDhravya <[email protected]>2024-06-22 18:23:05 -0500
commit445acf7c47b061107fdf1ce7bad5558ea2a909b3 (patch)
tree0a738b7a816f7b61865558be567c88d86db238c3 /apps/web/app/(dash)/chat/chatWindow.tsx
parentdeleted chatpage (diff)
downloadsupermemory-chathistory.tar.xz
supermemory-chathistory.zip
Diffstat (limited to 'apps/web/app/(dash)/chat/chatWindow.tsx')
-rw-r--r--apps/web/app/(dash)/chat/chatWindow.tsx3
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;
});