export function checkOneTeamEmpty({ teamAId, teamBId }: {
  teamAId?: string;
  teamBId?: string;
}) {
  const isAtLeastOneTeamEmpty = (!teamAId
    || !teamBId
    || teamAId === '999'
    || teamBId === '999'
  );
  return isAtLeastOneTeamEmpty;
}
