Decentralizer
11/01/2021, 3:43 AMsupabase-js
is the culprit.
https://github.com/supabase/supabase-js/issues/295
If anyone has any insight on how to move forward please let me know.Scott P
11/01/2021, 4:43 AMScott P
11/01/2021, 5:53 AMdetectSessionInUrl
to false: https://github.com/supabase/supabase-js/issues/295#issuecomment-955952766
js
export const supabaseClient = createClient(
my.supabase.url,
my_supabase_key,
{
localStorage: AsyncStorage as any,
autoRefreshToken: true,
persistSession: true,
detectSessionInUrl: false,
}
);
Decentralizer
11/02/2021, 2:37 PM