From f84b8e7b55ac11763486aa3822069db9ee6b80ce Mon Sep 17 00:00:00 2001 From: loks0n <22452787+loks0n@users.noreply.github.com> Date: Wed, 2 Oct 2024 22:16:05 +0100 Subject: [PATCH] fix(web): credentials include --- templates/web/src/client.ts.twig | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/web/src/client.ts.twig b/templates/web/src/client.ts.twig index 51f0ac7a7..6828abb0f 100644 --- a/templates/web/src/client.ts.twig +++ b/templates/web/src/client.ts.twig @@ -554,6 +554,7 @@ class Client { let options: RequestInit = { method, headers, + credentials: 'include', }; if (method === 'GET') {