utils.tsx 249 B

1234567891011121314
  1. /**
  2. * Noramlize a team slug from the query
  3. */
  4. export function getTeamParams(team?: string | string[]): string[] {
  5. if (team === '' || team === undefined) {
  6. return [];
  7. }
  8. if (Array.isArray(team)) {
  9. return team;
  10. }
  11. return [team];
  12. }