fix: allow null due_date in task schema for PATCH updates

This commit is contained in:
2026-07-28 14:20:03 +00:00
parent b76ba9f5c0
commit 945dd8904a
2 changed files with 2 additions and 2 deletions
@@ -82,7 +82,7 @@ export function TaskDetailPanel({
status,
priority,
domain,
due_date: dueDate || null
due_date: dueDate || undefined
})
});
if (!response.ok) throw new Error('Unable to save task');