import { KANBAN_COLUMN_DISPLAY, TASK_STATUS_LABELS } from '@renderer/utils/memberHelpers'; import type { TeamTaskWithKanban } from '@shared/types'; interface TaskRowProps { task: TeamTaskWithKanban; } export const TaskRow = ({ task }: TaskRowProps): React.JSX.Element => { const blockedByIds = task.blockedBy?.filter((id) => id.length > 0) ?? []; const blocksIds = task.blocks?.filter((id) => id.length > 0) ?? []; return (