From 36cd3efabd1379499f35a4ccf07eef800583efc1 Mon Sep 17 00:00:00 2001 From: cpacker Date: Tue, 13 Jan 2026 18:05:06 -0800 Subject: [PATCH] fix: hotfix for resume data not using conversation id --- src/cli/App.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cli/App.tsx b/src/cli/App.tsx index 83ddb4f..c38107a 100644 --- a/src/cli/App.tsx +++ b/src/cli/App.tsx @@ -3183,6 +3183,7 @@ export default function App({ const { pendingApprovals: existingApprovals } = await getResumeData( client, agent, + conversationIdRef.current, ); if (!existingApprovals || existingApprovals.length === 0) { @@ -5206,6 +5207,7 @@ DO NOT respond to these messages or otherwise consider them in your response unl const { pendingApprovals: existingApprovals } = await getResumeData( client, agent, + conversationIdRef.current, ); // Check if user cancelled while we were fetching approval state