From a89db320e0489040886d6fe11d6e7bc5a6826600 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Mon, 10 Nov 2025 03:42:52 +0000 Subject: [PATCH] Fix /api/applications query parameter from owner to user_id cgen-5d3f05609ed4488cb4351ee1c0340cb3 --- client/pages/Admin.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();