const orderChronologically = (rounds: Round[]) =>
  Array.from(rounds).sort((a, b) => compareAsc(a.createdAt, b.createdAt))