Custom Feedback

I’m trying to create custom Feedback with my own modal and this is how I

Sentry.configureScope((scope: Sentry.Scope) => {
  scope
    .setUser({ email: 'Feedback' })
    .setTag('tag', 'feedback')
    .setExtras({ feedback });
});
Sentry.captureMessage('Feedback');

And it works fine, however it goes to “Issues”, but I rather want it to go to “User Feedback”.
What should I config to be able to do it properly?