idk if this is worth putting it in the support cha...
# off-topic
r
idk if this is worth putting it in the support channel, but does supabase have a limit to how many times i can use the
await supabase
?
g
Maybe give more info on what you want to know. Await is a JavaScript syntax that says don’t move on in the code until I get a response (promise resolved) from this async function. Has little to do with number of calls to supabase.
r
i meant like is there a limit to calls?
idk the right term for it
but its like i was testing out the stuff nd at one point the console started to give me bunch of html code as output even tho the code was completely correct
g
The limits are only on data transferred in total for database select/inserts and those are soft limits. The next limit would be the server instance running out of compute power or memory and slowing down. Auth has limits especially with the Supabase default email on new users signing in. As far as any strict number of database calls per time period … no.
r
alright, so what was the console html error for?