fix(build): task row should be optional

This commit is contained in:
Elian Doran 2025-02-19 19:37:07 +02:00
parent 2a3546edd5
commit 2de46eb5d2
No known key found for this signature in database

View File

@ -144,5 +144,5 @@ export interface TaskRow {
dueDate?: string;
isDone?: boolean;
isDeleted?: boolean;
utcDateModified: string;
utcDateModified?: string;
}