From 59b3f56a9e04aacdf228b7a75fd271dbb2b04b5b Mon Sep 17 00:00:00 2001 From: Alessandro Pogliaghi Date: Thu, 2 Apr 2026 11:26:28 +0100 Subject: [PATCH] fix(cloud): let me stop u right there --- .../command-center/components/CommandCenterSessionView.tsx | 4 ++-- .../features/task-detail/components/TaskLogsPanel.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/code/src/renderer/features/command-center/components/CommandCenterSessionView.tsx b/apps/code/src/renderer/features/command-center/components/CommandCenterSessionView.tsx index 5bbf9792c..f63efba5c 100644 --- a/apps/code/src/renderer/features/command-center/components/CommandCenterSessionView.tsx +++ b/apps/code/src/renderer/features/command-center/components/CommandCenterSessionView.tsx @@ -55,8 +55,8 @@ export function CommandCenterSessionView({ events={events} taskId={taskId} isRunning={isRunning} - isPromptPending={isCloud ? null : isPromptPending} - promptStartedAt={isCloud ? undefined : promptStartedAt} + isPromptPending={isPromptPending} + promptStartedAt={promptStartedAt} onSendPrompt={handleSendPrompt} onBashCommand={isCloud ? undefined : handleBashCommand} onCancelPrompt={handleCancelPrompt} diff --git a/apps/code/src/renderer/features/task-detail/components/TaskLogsPanel.tsx b/apps/code/src/renderer/features/task-detail/components/TaskLogsPanel.tsx index 90ab786bf..f21494c80 100644 --- a/apps/code/src/renderer/features/task-detail/components/TaskLogsPanel.tsx +++ b/apps/code/src/renderer/features/task-detail/components/TaskLogsPanel.tsx @@ -147,8 +147,8 @@ export function TaskLogsPanel({ taskId, task }: TaskLogsPanelProps) { isSuspended ? handleRestoreWorktree : undefined } isRestoring={isRestoring} - isPromptPending={isCloud ? null : isPromptPending} - promptStartedAt={isCloud ? undefined : promptStartedAt} + isPromptPending={isPromptPending} + promptStartedAt={promptStartedAt} onSendPrompt={handleSendPrompt} onBashCommand={isCloud ? undefined : handleBashCommand} onCancelPrompt={handleCancelPrompt}