Removed fallback logic for gaia id logging (#2761)

This commit is contained in:
owenofbrien
2025-06-30 17:51:17 -05:00
committed by GitHub
parent 505a5d617b
commit f19b9ed4f8
2 changed files with 4 additions and 7 deletions

View File

@@ -73,9 +73,8 @@ export function getObfuscatedGoogleAccountId(): string {
return googleAccountId;
}
} catch (_error) {
// If there's any error accessing Google Account ID, fall back to installation ID
// If there's any error accessing Google Account ID, just return empty string
}
// Fall back to installation ID when no Google Account ID is cached or on error
return getInstallationId();
return '';
}