From 2de46eb5d2fe6e7d3b07d347141adf7e60731d5e Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 19 Feb 2025 19:37:07 +0200 Subject: [PATCH] fix(build): task row should be optional --- src/becca/entities/rows.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/becca/entities/rows.ts b/src/becca/entities/rows.ts index 85b9e1667..ba9189190 100644 --- a/src/becca/entities/rows.ts +++ b/src/becca/entities/rows.ts @@ -144,5 +144,5 @@ export interface TaskRow { dueDate?: string; isDone?: boolean; isDeleted?: boolean; - utcDateModified: string; + utcDateModified?: string; }