Update libraries/nestjs-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:11:25 +02:00 committed by GitHub
parent a997bec147
commit 3dd49e2b77
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -49,7 +49,7 @@ export const clearSentryUserContext = () => {
}
Sentry.setUser(null);
Sentry.setTag('user.activated', undefined);
Sentry.setTag('user.provider', undefined);
Sentry.setTag('user.super_admin', undefined);
Sentry.setTag('user.activated', null);
Sentry.setTag('user.provider', null);
Sentry.setTag('user.super_admin', null);
};