import { intl } from "src/locale"; interface Props { roles: string[]; } export function RolesFormatter({ roles }: Props) { const r = roles || []; if (r.length === 0) { r[0] = "standard-user"; } return ( <> {r.map((role: string) => ( {intl.formatMessage({ id: `role.${role}` })} ))} ); }