Skip to content

Commit ea2e2f2

Browse files
fix: display UI text about Apple not handling localhost
1 parent f400927 commit ea2e2f2

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

contexts/AuthContext.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,16 +98,13 @@ export const AuthProvider: React.FC<AuthProviderProps> = ({ children }) => {
9898
};
9999

100100
const signInWithApple = async () => {
101-
console.log("🍎 AuthContext: signInWithApple called");
102101
try {
103102
const result = await AuthService.createAppleSession();
104-
console.log("🍎 AuthContext: createAppleSession result:", result);
105103
return {
106104
success: result.success,
107105
error: result.error?.message,
108106
};
109107
} catch (error: any) {
110-
console.log("🍎 AuthContext: Error in signInWithApple:", error);
111108
return { success: false, error: error.message };
112109
}
113110
};

0 commit comments

Comments
 (0)