Hiya,
This issue doesn’t exist when I am running dev locally - same API URI, same key…
const { data, error } = await supabase
.from("meet")
.insert([{ name }])
.select();
This block never returns within the 10s timeout, so the app crashes. If I remove the .select(), it does return (but I need the result). The API call definitely works as the row is added into the DB
Thanks in advance for any ideas!