Update libraries/react-shared-libraries/src/sentry/sentry.user.context.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Enno Gelhaus 2025-07-31 22:12:30 +02:00 committed by GitHub
parent 9364012118
commit 8932ed712f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -66,8 +66,8 @@ export const clearSentryUserContext = () => {
}
Sentry.setUser(null);
Sentry.setTag('user.org_id', undefined);
Sentry.setTag('user.role', undefined);
Sentry.setTag('user.tier', undefined);
Sentry.setTag('user.admin', undefined);
Sentry.setTag('user.org_id', '');
Sentry.setTag('user.role', '');
Sentry.setTag('user.tier', '');
Sentry.setTag('user.admin', '');
};