From 79f811fd8bcb518bcd2b2b3c9fd9664ba6365983 Mon Sep 17 00:00:00 2001 From: ruwinirathnamalala Date: Mon, 22 Jun 2026 13:24:13 +0530 Subject: [PATCH] Fix for chat loading and input stuck even after clear chat is clicked --- GUI/src/pages/TestProductionLLM/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/GUI/src/pages/TestProductionLLM/index.tsx b/GUI/src/pages/TestProductionLLM/index.tsx index 5f22d71..8bd8e86 100644 --- a/GUI/src/pages/TestProductionLLM/index.tsx +++ b/GUI/src/pages/TestProductionLLM/index.tsx @@ -291,6 +291,8 @@ const TestProductionLLM: FC = () => { const clearChat = () => { setMessages([]); stopStreaming(); + setInputMessage(''); + setIsLoading(false); toast.open({ type: 'info', title: t('testProductionLLM.chatClearedTitle'),