From d40bd53e384911594ab8670befdd0e9a1a6fb689 Mon Sep 17 00:00:00 2001 From: "$@#il" Date: Wed, 5 Mar 2025 15:47:46 +0530 Subject: [PATCH] bug-fix:git apis --- src/components/pages/ProjectsPage.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {