feat(tracker): polish UI sorting and formatting (#22437)

This commit is contained in:
anj-s
2026-03-16 12:18:01 -07:00
committed by GitHub
parent 05fda0cf01
commit bba9c07541
3 changed files with 58 additions and 10 deletions
@@ -22,7 +22,6 @@ export const TASK_TYPE_LABELS: Record<TaskType, string> = {
export enum TaskStatus {
OPEN = 'open',
IN_PROGRESS = 'in_progress',
BLOCKED = 'blocked',
CLOSED = 'closed',
}
export const TaskStatusSchema = z.nativeEnum(TaskStatus);