Skip to content

Commit 13b247f

Browse files
committed
Fix jittery thinking
1 parent 819f8b3 commit 13b247f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/src/components/blocks/thinking-block.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const ThinkingBlock = memo(
3131
const firstBlock = blocks[0]
3232
const isCollapsed = firstBlock?.isCollapsed ?? true
3333
const marginLeft = Math.max(0, indentLevel * 2)
34-
const availWidth = Math.max(10, availableWidth - marginLeft - 4)
34+
const availWidth = Math.max(10, availableWidth - marginLeft - 10)
3535

3636
const handleToggle = useCallback(() => {
3737
onToggleCollapsed(thinkingId)

0 commit comments

Comments
 (0)