From 5f41b564978abd71d0adcdc81d677bf57b72c428 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 19 Oct 2025 21:17:47 +0000 Subject: [PATCH] Use assignee and due date on create; reset after cgen-81d5db819e794ddbb10c4bd048598191 --- client/pages/ProjectBoard.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/client/pages/ProjectBoard.tsx b/client/pages/ProjectBoard.tsx index 9426d916..658cd006 100644 --- a/client/pages/ProjectBoard.tsx +++ b/client/pages/ProjectBoard.tsx @@ -95,11 +95,13 @@ export default function ProjectBoard() { projectId, title.trim(), description.trim() || null, - null, - null, + assigneeId || null, + dueDate || null, ); setTitle(""); setDescription(""); + setAssigneeId(""); + setDueDate(""); await load(); } finally { setCreating(false);