From 1c6bb3cfed9c0b7a577f6c1f336ace1717753ddd Mon Sep 17 00:00:00 2001 From: daria-github Date: Fri, 8 Dec 2023 09:34:50 -0800 Subject: [PATCH] removed log --- .../components/FullConversation/FullConversation.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/component-library/components/FullConversation/FullConversation.tsx b/src/component-library/components/FullConversation/FullConversation.tsx index fbbe18a1..f0c9f746 100644 --- a/src/component-library/components/FullConversation/FullConversation.tsx +++ b/src/component-library/components/FullConversation/FullConversation.tsx @@ -32,7 +32,6 @@ export const FullConversation = ({ messages = [], isLoading = false, }: FullConversationProps) => { - console.log("MESSAGES", messages); const virtuosoRef = useRef(null); const filteredMessages = useMemo(() => { const filtered = messages.filter((msg) => msg !== null);