From c7b879a5f39bf649b8dd1e9bb7fc93df91d70b50 Mon Sep 17 00:00:00 2001 From: "Navy.gif" Date: Mon, 1 Apr 2024 19:39:58 +0300 Subject: [PATCH] fix typo --- src/pages/home/Applications.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);