From 3d22ec6733dbb768971b4e22ad825ba4fb3897bb Mon Sep 17 00:00:00 2001 From: pavel Date: Tue, 10 Feb 2026 22:12:11 +0100 Subject: [PATCH] fix --- frontend/src/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/main.js b/frontend/src/main.js index 3085bd6..acbd683 100644 --- a/frontend/src/main.js +++ b/frontend/src/main.js @@ -531,7 +531,7 @@ async function handleCallback() { loginOverlay.classList.add('hidden'); try { - const response = await fetch(`${API_URL}/auth/callback?code=${code}&redirect_uri=${encodeURIComponent(AUTH_CONFIG.redirectUri)}`); + const response = await fetch(`/auth/callback?code=${code}&redirect_uri=${encodeURIComponent(AUTH_CONFIG.redirectUri)}`); const data = await response.json(); if (data.access_token) {