From 4f7630fa052b7f76effcd9cf58e9afd4ee23afe7 Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Wed, 26 Apr 2023 01:37:56 -0300 Subject: [PATCH] think bug fixed --- src/frontend/src/modals/chatModal/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/modals/chatModal/index.tsx b/src/frontend/src/modals/chatModal/index.tsx index 6b1e0e829..5b3810796 100644 --- a/src/frontend/src/modals/chatModal/index.tsx +++ b/src/frontend/src/modals/chatModal/index.tsx @@ -44,7 +44,7 @@ export default function ChatModal({ setChatHistory((old) => { let newChat = _.cloneDeep(old); if (files) { - newChat.push({ message, isSend, files }); + newChat.push({ message, isSend, files,thought }); } else if (thought) { newChat.push({ message, isSend, thought }); } else {