I tried:
Sentry.init({
dsn: SENTRY_DSN
});
Sentry.configureScope(scope => scope.setUser({ id: ‘’})); // clear automatically set user
after I get the userID
Sentry.setTag('loggedInUser', userID);
I see loggedInUser reported only for a few events, not all. Same is the case when I used:
Sentry.setUser("id", userID);
What am I doing wrong?