diff --git a/src/components/chat/AssistantMessage.tsx b/src/components/chat/AssistantMessage.tsx index 4afadef..522ae4a 100644 --- a/src/components/chat/AssistantMessage.tsx +++ b/src/components/chat/AssistantMessage.tsx @@ -34,18 +34,18 @@ const AssistantMessage: React.FC = ({ content, isStreamin const renderContent = () => { // Handle special abort link for streaming messages if (isStreaming && onAbort && content.includes('click here to abort')) { - const hasProcessingWave = content.includes('Processing...'); + const hasProcessingWave = content.includes('Thinking...'); if (hasProcessingWave) { const parts = content.split('click here to abort'); const beforeAbort = parts[0].replace( - 'Processing...', + 'Thinking...', '' ); return ( - Processing... + Thinking... {beforeAbort}