Supabase API call hanging

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!

Hey,

Do you mean it’s taking less than 10 seconds to return response in local machine? Can you share us a minimal repo which we can check?

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.