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