/** "closed_won" → "Closed won". Shared by the List grouping and TaskFilterMenu's stage filter. */
export function humanizeStatus(value: string): string {
const spaced = value.replace(/_/g, ' ');
return spaced.charAt(0).toUpperCase() + spaced.slice(1);
}