await fetch(url)
    .then((response) => {
      if (!response.ok) {
        throw new Error("Cannot fetch transcripts");
      } else return response.text();