a tool for shared writing and social publishing
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix using external_auth_token cookie

+1 -1
+1 -1
actions/getIdentityData.ts
··· 7 7 let cookieStore = await cookies(); 8 8 let auth_token = 9 9 cookieStore.get("auth_token")?.value || 10 - cookieStore.get("external_auth_token"); 10 + cookieStore.get("external_auth_token")?.value; 11 11 let auth_res = auth_token 12 12 ? await supabaseServerClient 13 13 .from("email_auth_tokens")