Skip to content

Commit a5ba178

Browse files
committed
chore: fmt
Change-Id: I8a3433b010c7b657a26e2ecd81e493f77b7ca680 Signed-off-by: Thomas Kosiewski <tk@coder.com>
1 parent 50233bf commit a5ba178

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/browser/components/AIView.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,8 @@ const AIViewInner: React.FC<AIViewProps> = ({
788788
<ConnectionStatusIndicator />
789789
{isQueuedAgentTask && (
790790
<div className="border-border-medium bg-background-secondary text-muted mb-2 rounded-md border px-3 py-2 text-xs">
791-
This agent task is queued and will start automatically when a parallel slot is available.
791+
This agent task is queued and will start automatically when a parallel slot is
792+
available.
792793
</div>
793794
)}
794795
<ChatInput

src/node/services/taskService.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1111,7 +1111,8 @@ export class TaskService {
11111111
const config = this.config.loadConfigOrDefault();
11121112
const taskSettings: TaskSettings = config.taskSettings ?? DEFAULT_TASK_SETTINGS;
11131113
assert(
1114-
Number.isFinite(taskSettings.maxParallelAgentTasks) && taskSettings.maxParallelAgentTasks > 0,
1114+
Number.isFinite(taskSettings.maxParallelAgentTasks) &&
1115+
taskSettings.maxParallelAgentTasks > 0,
11151116
"TaskService.maybeStartQueuedTasks: maxParallelAgentTasks must be a positive number"
11161117
);
11171118

0 commit comments

Comments
 (0)