diff --git a/src/pages/home/Applications.tsx b/src/pages/home/Applications.tsx index 9b5a652..54a1a54 100644 --- a/src/pages/home/Applications.tsx +++ b/src/pages/home/Applications.tsx @@ -19,7 +19,7 @@ const Application = () => { (async () => { - const response = await get(`/api/users/applications/${id}`); + const response = await get(`/api/user/applications/${id}`); if (!response.success || !response.data) return errorToast(response.message); setApp(response.data);