[▲ Vercel Community](/) · [Categories](/categories) · [Latest](/latest) · [Top](/top) · [Live](/live)

[Help](/c/help/9)

# Supabase API call hanging

92 views · 1 like · 2 posts


Qu1rk3y (@qu1rk3y) · 2024-07-18

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!


Swarnava Sengupta (@swarnava) · 2024-07-18 · ♥ 1

Hey,

Do you mean it's taking less than 10 seconds to return response in local machine? Can you share us a [minimal repo](https://vercel.com/guides/creating-a-minimal-reproducible-example) which we can check?