Skip to content

Commit 266cd03

Browse files
Moving component.
1 parent 1460bd2 commit 266cd03

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

app/login.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ function LoginScreenContent() {
7373
// Simple configuration with minimal logging to prevent recursion
7474
try {
7575
// Use different client IDs for debug vs production
76-
const webClientId = __DEV__
77-
? Constants.expoConfig?.extra?.googleWebClientIdDev || Constants.expoConfig?.extra?.googleWebClientId
78-
: Constants.expoConfig?.extra?.googleWebClientId;
76+
const extra = Constants.expoConfig?.extra;
77+
const webClientId = __DEV__ ? (extra?.googleWebClientIdDev || extra?.googleWebClientId) : extra?.googleWebClientId;
78+
console.log("webClientId:", webClientId || 'MISSING');
7979

8080
if (!webClientId) {
8181
console.warn('🟡 Google Web Client ID is missing. Falling back to no offline access.');

0 commit comments

Comments
 (0)