Skip to content

Commit aa5a024

Browse files
authored
fix(cloud): let me stop u right there (#1441)
1 parent c672079 commit aa5a024

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

apps/code/src/renderer/features/command-center/components/CommandCenterSessionView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ export function CommandCenterSessionView({
5555
events={events}
5656
taskId={taskId}
5757
isRunning={isRunning}
58-
isPromptPending={isCloud ? null : isPromptPending}
59-
promptStartedAt={isCloud ? undefined : promptStartedAt}
58+
isPromptPending={isPromptPending}
59+
promptStartedAt={promptStartedAt}
6060
onSendPrompt={handleSendPrompt}
6161
onBashCommand={isCloud ? undefined : handleBashCommand}
6262
onCancelPrompt={handleCancelPrompt}

apps/code/src/renderer/features/task-detail/components/TaskLogsPanel.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,8 @@ export function TaskLogsPanel({ taskId, task }: TaskLogsPanelProps) {
147147
isSuspended ? handleRestoreWorktree : undefined
148148
}
149149
isRestoring={isRestoring}
150-
isPromptPending={isCloud ? null : isPromptPending}
151-
promptStartedAt={isCloud ? undefined : promptStartedAt}
150+
isPromptPending={isPromptPending}
151+
promptStartedAt={promptStartedAt}
152152
onSendPrompt={handleSendPrompt}
153153
onBashCommand={isCloud ? undefined : handleBashCommand}
154154
onCancelPrompt={handleCancelPrompt}

0 commit comments

Comments
 (0)