fix: path to api req
Some checks failed
Backend ci / build (pull_request) Has been cancelled

This commit is contained in:
d3m0k1d
2026-02-15 00:14:00 +03:00
parent f22a8049f7
commit 0cbed8f5ec

View File

@@ -36,7 +36,7 @@ export function AuthProvider({ children }: { children: ReactNode }) {
return; return;
} }
const response = await fetch("/api/session", { const response = await fetch("/api/v1/session", {
headers: { headers: {
Authorization: `Bearer ${token}`, Authorization: `Bearer ${token}`,
}, },