Dashboard authorization without additional log-in

I am using the authorization setup in Startup.cs:
app.UseHangfireDashboard("/hangfire", new DashboardOptions
{
Authorization = new[] { new BasicAuthAuthorizationFilter(
new BasicAuthAuthorizationFilterOptions
{
RequireSsl = true,
LoginCaseSensitive = true,
Users = new []
{
new BasicAuthAuthorizationUser
{
Login=“login”,
PasswordClear = “psw”
}
}
})
}
});
My .Net Blazor Webassembly app implements the login. When I am redirecting to /hangfire I am getting a login prompt, but I am already logged in with “login/psw” credentials. What should I do to allow my app user to also be authorized for dashboard?