Enhanced the ShotDeleteConfirmDialog to properly display custom task statuses with correct names and colors:
{
id: string, // Status ID (e.g., "not_started", "custom_status_1")
name: string, // Display name (e.g., "Not Started", "In Review")
color: string, // Hex color code (e.g., "#6b7280", "#f59e0b")
is_system: boolean // Whether it's a system or custom status
}
Before: Task statuses showed as raw IDs (e.g., "not_started", "custom_status_1")
After: Task statuses show proper names with custom colors (e.g., "Not Started", "In Review" with orange background)
The TaskStatusBadge component will now display:
✅ Shot Delete Dialog Custom Status Enhancement Complete!