From 929d455b30b07da662010f0609d649b188521018 Mon Sep 17 00:00:00 2001 From: rassadin11 Date: Tue, 12 May 2026 21:55:17 +0300 Subject: [PATCH] =?UTF-8?q?feat:=20=D0=BF=D0=BE=D1=85=D1=83=D0=B9=D1=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/features/auth/api/profileApi.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/auth/api/profileApi.ts b/src/features/auth/api/profileApi.ts index 24a86ef..fc947dc 100644 --- a/src/features/auth/api/profileApi.ts +++ b/src/features/auth/api/profileApi.ts @@ -7,7 +7,7 @@ export async function getMe(): Promise { const csrf = await getCsrfToken() const bearer = tokenStore.get() - const res = await fetch(`${USERS_API_URL}/me`, { + const res = await fetch(`${USERS_API_URL}/me/`, { credentials: 'include', headers: { 'X-CSRF-Token': csrf,