From b7d17a5295cabec9c0be4e291d937fbeed8e526a Mon Sep 17 00:00:00 2001 From: Daniil Date: Thu, 30 Apr 2026 01:16:09 +0300 Subject: [PATCH] fix: include creds in responses --- src/shared/api/fetchClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/api/fetchClient.ts b/src/shared/api/fetchClient.ts index ab8d87e..a03c5d9 100644 --- a/src/shared/api/fetchClient.ts +++ b/src/shared/api/fetchClient.ts @@ -16,7 +16,7 @@ const getAccessTokenFromCookieHeader = ( export const fetchClient = createFetchClient({ baseUrl: API_URL, - // credentials: "include", + credentials: "include", headers: { "Content-Type": "application/json", },