style: apply prettier formatting

This commit is contained in:
ejclaw
2026-04-08 19:20:22 +09:00
parent 8b9bebd29e
commit 1fedd36ec7
11 changed files with 65 additions and 50 deletions

View File

@@ -672,9 +672,7 @@ export function markWorkItemDeliveryRetry(id: number, error: string): void {
markWorkItemDeliveryRetryInDatabase(db, id, error);
}
export function createTask(
task: CreateScheduledTaskInput,
): void {
export function createTask(task: CreateScheduledTaskInput): void {
createTaskInDatabase(db, task);
}
@@ -705,10 +703,7 @@ export function getAllTasks(agentType?: AgentType): ScheduledTask[] {
return getAllTasksFromDatabase(db, agentType);
}
export function updateTask(
id: string,
updates: ScheduledTaskUpdates,
): void {
export function updateTask(id: string, updates: ScheduledTaskUpdates): void {
updateTaskInDatabase(db, id, updates);
}
@@ -1200,7 +1195,6 @@ export function getEffectiveRuntimeRoomMode(chatJid: string): RoomMode {
: 'single';
}
// --- Paired task/project/workspace state ---
export function upsertPairedProject(project: PairedProject): void {