We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86ec25a commit 72430e5Copy full SHA for 72430e5
refact-agent/gui/src/components/ChatForm/ChatForm.tsx
@@ -400,9 +400,10 @@ export const ChatForm: React.FC<ChatFormProps> = ({
400
type="button"
401
onClick={() => void compressChat()}
402
disabled={
403
- unCalledTools ||
404
- lastSentCompression === null ||
405
- lastSentCompression === "absent"
+ messages.length === 0 ||
+ isStreaming ||
+ isWaiting ||
406
+ unCalledTools
407
}
408
loading={compressChatRequest.isLoading || isCompressing}
409
>
0 commit comments