From 16ec1f605eaa0213da6f1070df51374c8fac60ec Mon Sep 17 00:00:00 2001 From: Bohdan Triapitsyn Date: Thu, 16 Apr 2026 19:14:19 +0300 Subject: [PATCH] fix(chat): show blocking requests in sub-session threads too --- packages/ui/src/components/chat/lib/blockingRequests.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/packages/ui/src/components/chat/lib/blockingRequests.ts b/packages/ui/src/components/chat/lib/blockingRequests.ts index d95507ca..8da5305e 100644 --- a/packages/ui/src/components/chat/lib/blockingRequests.ts +++ b/packages/ui/src/components/chat/lib/blockingRequests.ts @@ -13,11 +13,6 @@ export const collectVisibleSessionIdsForBlockingRequests = ( const current = sessions.find((session) => session.id === currentSessionId); if (!current) return [currentSessionId]; - // Opencode parity: when viewing a child session, permission/question prompts are handled in parent thread. - if (current.parentID) { - return []; - } - const childrenByParent = new Map(); for (const session of sessions) { if (!session.parentID) {