diff --git a/client/pages/Admin.tsx b/client/pages/Admin.tsx index 79b6d0ac..087c0457 100644 --- a/client/pages/Admin.tsx +++ b/client/pages/Admin.tsx @@ -162,7 +162,7 @@ export default function Admin() { setProjectApplicationsLoading(true); try { const response = await fetch( - `/api/applications?owner=${encodeURIComponent(user.id)}`, + `/api/applications?user_id=${encodeURIComponent(user.id)}`, ); if (response.ok) { const data = await response.json();