You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{/* Text selection popover for adding text to context */}
3928
-
<TextSelectionPopover
3929
-
onAddToContext={addTextContext}
3930
-
onQuickComment={handleQuickComment}
3931
-
onFocusInput={handleFocusInput}
3932
-
/>
3927
+
{/* Text selection popover for adding text to context - only render for active tab to prevent portaled popovers from inactive tabs capturing clicks */}
3928
+
{isActive&&(
3929
+
<TextSelectionPopover
3930
+
onAddToContext={addTextContext}
3931
+
onQuickComment={handleQuickComment}
3932
+
onFocusInput={handleFocusInput}
3933
+
/>
3934
+
)}
3933
3935
3934
-
{/* Quick comment input */}
3935
-
{quickCommentState&&(
3936
+
{/* Quick comment input - only render for active tab to prevent portal escaping pointerEvents isolation */}
0 commit comments