diff --git a/langflow/frontend/src/components/chatComponent/index.tsx b/langflow/frontend/src/components/chatComponent/index.tsx index 8e4ed58d9..00a278037 100644 --- a/langflow/frontend/src/components/chatComponent/index.tsx +++ b/langflow/frontend/src/components/chatComponent/index.tsx @@ -154,7 +154,7 @@ export default function Chat({ flow, reactFlowInstance }: ChatType) { }} type="text" disabled={lockChat} - value={lockChat?"please wait for the response": chatValue} + value={lockChat?"Thinking...": chatValue} onChange={(e) => { setChatValue(e.target.value); }}