We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f400927 commit ea2e2f2Copy full SHA for ea2e2f2
contexts/AuthContext.tsx
@@ -98,16 +98,13 @@ export const AuthProvider: React.FC<AuthProviderProps> = ({ children }) => {
98
};
99
100
const signInWithApple = async () => {
101
- console.log("🍎 AuthContext: signInWithApple called");
102
try {
103
const result = await AuthService.createAppleSession();
104
- console.log("🍎 AuthContext: createAppleSession result:", result);
105
return {
106
success: result.success,
107
error: result.error?.message,
108
109
} catch (error: any) {
110
- console.log("🍎 AuthContext: Error in signInWithApple:", error);
111
return { success: false, error: error.message };
112
}
113
0 commit comments