My browser complains about Theme cookies. It sends me a message about not having proper "SameSite" attribute value, so I tried to fix it but it is configured with
builder.Services.AddRadzenCookieThemeService(options =>
{
options.Name = "EcoMatrixTheme";
options.Duration = TimeSpan.FromDays(365);
});
and it does not recognize the SameSite option parameter.
Is there any other solution for this issue or this is not an issue?