Upsert stuck
anyone knows why this upsert statement never finishes? the data is actually inserted in the db, but "2" is never printed:
console.log("1")
await supabase.from("accounts").upsert({
discord_id: discordId,
timestamp: new Date().,
user_uid: userUid,
});
console.log("2")