Hanging After Sign Up
Hi, I've made the OAuth sign up available on Expo. When I sign up using:
const res = await supabase.auth.signInWithOAuth({
provider: 'google',
options: {
redirectTo:
queryParams: { prompt: 'consent' },
skipBrowserRedirect: true,
},
});
its successful and the profile is made in auth and public.profiles. The issue is when I try to continue the onboarding flow in my app the profile is never retrived back after creation.
This is the read RLS policy: (( SELECT auth.uid() AS uid) = id) with access granted for authenticated and anon.
Has anybody faced this before?
const res = await supabase.auth.signInWithOAuth({
provider: 'google',
options: {
redirectTo:
${scheme}://google-auth,queryParams: { prompt: 'consent' },
skipBrowserRedirect: true,
},
});
its successful and the profile is made in auth and public.profiles. The issue is when I try to continue the onboarding flow in my app the profile is never retrived back after creation.
This is the read RLS policy: (( SELECT auth.uid() AS uid) = id) with access granted for authenticated and anon.
Has anybody faced this before?