From f6a7fab2349230c67b9f9096fd1ecb860f120f32 Mon Sep 17 00:00:00 2001 From: EENE Dashboard Date: Mon, 1 Jun 2026 15:23:43 +0900 Subject: [PATCH] fix: use Record for task body to allow boolean showDate Co-authored-by: Cursor --- backend/src/routes/tasks.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/routes/tasks.ts b/backend/src/routes/tasks.ts index 18abd35..7817d2c 100644 --- a/backend/src/routes/tasks.ts +++ b/backend/src/routes/tasks.ts @@ -57,7 +57,7 @@ router.post('/', async (req, res, next) => { try { const { title, description, status, priority, quarter, category, section, tag, taskType, progress, issueNote, startDate, dueDate, assigneeId, showDate } = - req.body as Record; + req.body as Record; if (!title || !quarter) { throw new AppError(400, '제목과 분기는 필수입니다.');