Skip to content

Commit

Permalink
chore(expo): Remove console.logs from useOAuth
Browse files Browse the repository at this point in the history
  • Loading branch information
octoper committed Jun 12, 2024
1 parent b84424e commit 65cc268
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions packages/expo/src/hooks/useOAuth/useOAuth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,6 @@ export function useOAuth(useOAuthParams: UseOAuthFlowParams) {
oauthRedirectUrl,
);

console.log('authSessionResult', authSessionResult);

// @ts-expect-error
const { type, url } = authSessionResult || {};

Expand All @@ -92,7 +90,6 @@ export function useOAuth(useOAuthParams: UseOAuthFlowParams) {
let createdSessionId = '';

if (status === 'complete') {
console.log('signIn', signIn);
createdSessionId = signIn.createdSessionId!;
} else if (firstFactorVerification.status === 'transferable') {
await signUp.create({
Expand Down

0 comments on commit 65cc268

Please sign in to comment.