Got Apple Auth working

This commit is contained in:
2025-06-08 18:31:35 -05:00
parent c47c43dc92
commit 6a6c0934d5
4 changed files with 6 additions and 7 deletions

View File

@ -78,7 +78,6 @@ export const signInWithApple = async (): Promise<Result<string>> => {
const { data, error } = await supabase.auth.signInWithOAuth({
provider: 'apple',
options: {
scopes: 'openid, profile email offline_access',
redirectTo: `${origin}/auth/callback?redirect_to=/auth/success`,
},
});