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, '제목과 분기는 필수입니다.');