const fetchProxyGenres = async () =>
  fetch('/api/v1.2/genres.json').then(
    async (r) => (await r.json()) as API.GenresResponse,
  );