We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa63434 commit ccec80aCopy full SHA for ccec80a
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", supabase.rpc("uuid",[uid]))
+ .eq("id", uid)
68
.single();
69
70
if (userExistsError || !userExists) {
0 commit comments