From f7410673fe567e437660e91652ee58813d68a4dc Mon Sep 17 00:00:00 2001 From: dotta Date: Mon, 6 Apr 2026 11:50:11 -0500 Subject: [PATCH] Fix needs-work feedback panel closing immediately The IssueChatCtx.Provider was opened but never closed, causing the context to not properly wrap the thread. This, combined with the stable component references via context (already in place), ensures OutputFeedbackButtons state is preserved across re-renders when feedback votes update. Co-Authored-By: Paperclip --- ui/src/components/IssueChatThread.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/src/components/IssueChatThread.tsx b/ui/src/components/IssueChatThread.tsx index 32100637..1503757d 100644 --- a/ui/src/components/IssueChatThread.tsx +++ b/ui/src/components/IssueChatThread.tsx @@ -1054,6 +1054,7 @@ export function IssueChatThread({ /> ) : null} + ); }