diff --git a/src/components/pages/ProjectsPage.jsx b/src/components/pages/ProjectsPage.jsx index 573e4bc..2c5c22c 100644 --- a/src/components/pages/ProjectsPage.jsx +++ b/src/components/pages/ProjectsPage.jsx @@ -232,7 +232,7 @@ const ProjectsPage = () => { const handleAuthorizationWithGithub = async () => { try { - const response = await axios.get("${API_URL}/api/github/auth-url"); + const response = await axios.get(`${API_URL}/api/github/auth-url`); if (response.data.success && response.data.authUrl) { window.location.href = response.data.authUrl; } else {