refactor: 업무 상태 'todo' 라벨을 '대기' 로 통일 (Phase 4)

todo 표기가 화면마다 '할 일'(taskStatusLabel) vs '대기'(ProjectDetail 배지)로
갈리던 불일치 해소. SSOT(format.taskStatusLabel)를 '대기' 로 통일하고
ProjectDetailPage 의 자체 STATUS_LABEL 제거 → taskStatusLabel 사용.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-23 00:02:42 +09:00
parent 3380bbdcff
commit daff61c85e
2 changed files with 5 additions and 11 deletions
+1 -1
View File
@@ -101,7 +101,7 @@ const WEEKDAYS_KO = ['일', '월', '화', '수', '목', '금', '토']
/** 업무 상태 → 한국어 라벨 */
const TASK_STATUS_LABEL: Record<TaskStatus, string> = {
todo: '할 일',
todo: '대기',
prog: '진행 중',
review: '승인 대기',
done: '완료',