This commit is contained in:
Erik 2024-04-01 19:39:58 +03:00
parent 2eeb4c07e9
commit c7b879a5f3

View File

@ -19,7 +19,7 @@ const Application = () =>
{ {
(async () => (async () =>
{ {
const response = await get<App>(`/api/users/applications/${id}`); const response = await get<App>(`/api/user/applications/${id}`);
if (!response.success || !response.data) if (!response.success || !response.data)
return errorToast(response.message); return errorToast(response.message);
setApp(response.data); setApp(response.data);