Operation timed out after 5002 milliseconds with 0 bytes received | XX000
I'm trying to do a simple insert to a table and it's failing with certain auth accounts and works with others, I'm getting this response:
this is the insert code:
{
"code": "XX000",
"details": null,
"hint": null,
"message": "Operation timed out after 5002 milliseconds with 0 bytes received"
}this is the insert code:
const { data } = await supabase
.from("table_name")
.insert({
user_id: user?.id,
start: sa.start,
end: sa.end,
link: sa.link,
prospect_id: finalProspectId,
external_event_id: sa.external_event_id,
google_synced: userSync?.[0]?.provider === "google",
outlook_synced: userSync?.[0]?.provider === "outlook"
})
.select("*")