From 62fa1dd1cab22197ef59fb3ef8515d044ce6938a Mon Sep 17 00:00:00 2001 From: EENE Dashboard Date: Mon, 1 Jun 2026 13:21:33 +0900 Subject: [PATCH] fix: remove unused TAG_CONFIG Co-authored-by: Cursor --- frontend/src/components/dashboard/TaskCard.tsx | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/frontend/src/components/dashboard/TaskCard.tsx b/frontend/src/components/dashboard/TaskCard.tsx index 6704ed7..67f5d3a 100644 --- a/frontend/src/components/dashboard/TaskCard.tsx +++ b/frontend/src/components/dashboard/TaskCard.tsx @@ -10,17 +10,6 @@ import { TaskModal } from '../common/TaskModal'; import type { TaskFormData } from '../common/TaskModal'; import type { Task } from '../../types'; -// ─── 태그 배지 색상 (카드 배경은 흰색 통일) ────────────────── -const TAG_CONFIG: Record = { - Growth: { bg: 'bg-blue-100', text: 'text-blue-800' }, - Policy: { bg: 'bg-purple-100', text: 'text-purple-800' }, - Performance: { bg: 'bg-emerald-100', text: 'text-emerald-800' }, - Culture: { bg: 'bg-amber-100', text: 'text-amber-800' }, - Asset: { bg: 'bg-cyan-100', text: 'text-cyan-800' }, - Space: { bg: 'bg-indigo-100', text: 'text-indigo-800' }, - Safety: { bg: 'bg-red-100', text: 'text-red-800' }, - Environment: { bg: 'bg-lime-100', text: 'text-lime-800' }, -}; const STATUS_STYLE: Record = { IN_PROGRESS: 'bg-blue-500 text-white',