From 752839972938f1c1b2c25e937ebfabf99053ff21 Mon Sep 17 00:00:00 2001 From: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com> Date: Fri, 26 Sep 2025 00:23:49 +0200 Subject: [PATCH] chore: run format --- packages/tm-core/src/storage/file-storage/file-storage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tm-core/src/storage/file-storage/file-storage.ts b/packages/tm-core/src/storage/file-storage/file-storage.ts index 1fdecb7c..06e93144 100644 --- a/packages/tm-core/src/storage/file-storage/file-storage.ts +++ b/packages/tm-core/src/storage/file-storage/file-storage.ts @@ -391,7 +391,7 @@ export class FileStorage implements IStorage { const subs = parentTask.subtasks; let parentNewStatus = parentTask.status; if (subs.length > 0) { - const norm = (s: any) => (s.status || 'pending'); + const norm = (s: any) => s.status || 'pending'; const allDone = subs.every((s) => norm(s) === 'done'); const anyInProgress = subs.some((s) => norm(s) === 'in-progress'); const anyDone = subs.some((s) => norm(s) === 'done');