Ok first this is the set up:
1 table base
7 separate table tabs with individual table names
Using react and the npm airtable package
I am making a call in the api to retrieve 1 record by its ID.
const base = new Airtable({ apiKey: Key }).base(id);
co...