Remove httpOnly setting from setCookie

This commit is contained in:
Cody 2024-10-05 14:17:20 -07:00 committed by GitHub
parent 998dc95cb2
commit f60f7a4dc1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,7 +22,7 @@ namespace Oqtane.UI
{
_jsRuntime.InvokeVoidAsync(
"Oqtane.Interop.setCookie",
name, value, days, secure, httpOnly, sameSite);
name, value, days, secure, sameSite);
return Task.CompletedTask;
}
catch