We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbed789 commit 1b366eeCopy full SHA for 1b366ee
supabase/functions/inituser/index.ts
@@ -64,7 +64,7 @@ Deno.serve(async (req) => {
64
const { data: userExists, error: userExistsError } = await supabase
65
.from("users")
66
.select("id")
67
- .eq("id", uid)
+ .eq("id", supabase.rpc('uuid',uid))
68
.single();
69
70
if (userExistsError || !userExists) {
0 commit comments