Skip to content

Commit 9fa038c

Browse files
committed
fix others
1 parent 6fbd583 commit 9fa038c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/renderer/features/agents/main/active-chat.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3933,8 +3933,8 @@ const ChatViewInner = memo(function ChatViewInner({
39333933
/>
39343934
)}
39353935

3936-
{/* Quick comment input */}
3937-
{quickCommentState && (
3936+
{/* Quick comment input - only render for active tab to prevent portal escaping pointerEvents isolation */}
3937+
{isActive && quickCommentState && (
39383938
<QuickCommentInput
39393939
selectedText={quickCommentState.selectedText}
39403940
source={quickCommentState.source}

0 commit comments

Comments
 (0)