fix: remove useCookies from login to allow JWT extraction

This commit is contained in:
2026-05-10 20:13:07 +02:00
parent 2b68eb1f10
commit e22ec0e57c
@@ -71,7 +71,7 @@ public class IdentityService : IIdentityService
{
try
{
var response = await _httpClient.PostAsJsonAsync("identity/login?useCookies=true", new { email, password });
var response = await _httpClient.PostAsJsonAsync("identity/login", new { email, password });
if (response.IsSuccessStatusCode)
{