style: prettier formatting from pre-commit hook

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Eyejoker
2026-03-24 03:49:00 +09:00
parent 3467e245d5
commit 5cd424017f
4 changed files with 16 additions and 12 deletions

View File

@@ -105,10 +105,7 @@ export function evaluateTaskSuspension(
/**
* Apply suspension to a task in the DB.
*/
export function suspendTask(
taskId: string,
suspendedUntil: string,
): void {
export function suspendTask(taskId: string, suspendedUntil: string): void {
updateTask(taskId, { suspended_until: suspendedUntil });
logger.info(
{ taskId, suspendedUntil },