Hello, I was wondering how I update my fetch code in observable to use the personal access tokens? Here is the notebook: https://observablehq.com/@datagrazing/fermentation-jar
and the code in question:
Airtable = (await import("https://cdn.skypack.dev/airtable@0.11.1?min")).defaultfull_data = {
data = {
const base = new Airtable({ apiKey: API_KEY }).base(BASE);
const records = await base("ratios").select({ view: "Grid view" }).all();
return records.map((d) => d.fields);
}