summaryrefslogtreecommitdiff
path: root/packages/core/src/utils/user_id.ts
diff options
context:
space:
mode:
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 '';
}