From 80d248e02d9fabf32286bc974a41f5f5c88fdfdb Mon Sep 17 00:00:00 2001 From: Yuhong Sun Date: Thu, 23 Jan 2025 11:25:06 -0800 Subject: [PATCH] Copy changes --- web/src/app/chat/message/SubQuestionsDisplay.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/src/app/chat/message/SubQuestionsDisplay.tsx b/web/src/app/chat/message/SubQuestionsDisplay.tsx index 9b112145f..4cc7e488a 100644 --- a/web/src/app/chat/message/SubQuestionsDisplay.tsx +++ b/web/src/app/chat/message/SubQuestionsDisplay.tsx @@ -494,7 +494,7 @@ const SubQuestionsDisplay: React.FC = ({ ).length == memoizedSubQuestions.length; const [streamedText, setStreamedText] = useState( - !overallAnswerGenerating ? "Summarizing findings" : "" + !overallAnswerGenerating ? "Summarize findings" : "" ); const [showSummarizing, setShowSummarizing] = useState( finishedGenerating && !overallAnswerGenerating @@ -538,8 +538,8 @@ const SubQuestionsDisplay: React.FC = ({ }, [memoizedSubQuestions, finishedGenerating]); useEffect(() => { - if (showSummarizing && streamedText !== "Summarizing findings") { - const fullText = "Summarizing findings"; + if (showSummarizing && streamedText !== "Summarize findings") { + const fullText = "Summarize findings"; let index = 0; const streamInterval = setInterval(() => {