This commit is contained in:
nquidox 2025-09-14 16:23:34 +03:00
parent 6ccdd0a003
commit ba4d769591
2 changed files with 3 additions and 3 deletions

View file

@ -29,7 +29,7 @@ async function refreshAccessToken() {
if (isRefreshing) return refreshPromise;
isRefreshing = true;
refreshPromise = fetch(`${BASE_URL}/auth/refresh`, {
refreshPromise = fetch(`${BASE_URL}/user/auth/refresh`, {
method: 'POST',
credentials: 'include',
})