I'm trying to receive data from Google Sheet and it was working but currently the fetch keeps failing with the following error.
const url = `https://docs.google.com/spreadsheets/d/e/${id}/pub?gid=${gid}&single=true&output=csv`;
const result = await fetch(url);
const csvText = await result.text();