role-code-label.tsx 342 B

12345678
  1. import { CUSTOMER_ROLE_CODE, SUPER_ADMIN_ROLE_CODE } from '@/constants.js';
  2. import { Trans } from '@/lib/trans.js';
  3. export function RoleCodeLabel({ code }: { code: string } | { code: undefined }) {
  4. return code === SUPER_ADMIN_ROLE_CODE ? <Trans>Super Admin</Trans> :
  5. code === CUSTOMER_ROLE_CODE ? <Trans>Customer</Trans> : code;
  6. }