const SEEDED_ROLE_LABELS: Record = { super_admin: "Super admin", admin: "Admin", cs_team_leader: "Support team lead", cs_user: "Support agent", } export function getRoleDisplayName( code: string | undefined, fallbackName: string, locale: string ) { if (locale !== "en-US") { return fallbackName } const label = SEEDED_ROLE_LABELS[code?.trim() ?? ""] return label || fallbackName }