summaryrefslogtreecommitdiff
path: root/packages/core/src/utils/user_id.ts
diff options
context:
space:
mode:
authorowenofbrien <[email protected]>2025-06-30 17:51:17 -0500
committerGitHub <[email protected]>2025-06-30 22:51:17 +0000
commitf19b9ed4f8444ff766338b1a16f58a05522b3ce1 (patch)
tree4f3ef4b596dec1028192072a3cc7cf34db9a0724 /packages/core/src/utils/user_id.ts
parent505a5d617b4bfa02ea363d3a3e0ae0bc178ddc58 (diff)
Removed fallback logic for gaia id logging (#2761)
Diffstat (limited to 'packages/core/src/utils/user_id.ts')
-rw-r--r--packages/core/src/utils/user_id.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/packages/core/src/utils/user_id.ts b/packages/core/src/utils/user_id.ts
index 4f17bf96..5238fc3c 100644
--- a/packages/core/src/utils/user_id.ts
+++ b/packages/core/src/utils/user_id.ts
@@ -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 '';
}