From d23b45b9017b865130e7ffde0aa170a957abaeb1 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 14 Oct 2025 02:23:31 +0000 Subject: [PATCH] Add ProjectApplication type cgen-d95d0bd418de4aad822a839c5c3b971f --- client/pages/Admin.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/client/pages/Admin.tsx b/client/pages/Admin.tsx index 098128b0..e707c068 100644 --- a/client/pages/Admin.tsx +++ b/client/pages/Admin.tsx @@ -52,6 +52,19 @@ export default function Admin() { metrics?: string; specialties?: string[]; }; + type ProjectApplication = { + id: string; + status?: string | null; + applicant_email?: string | null; + applicant_name?: string | null; + created_at?: string | null; + notes?: string | null; + projects?: { + id?: string | null; + title?: string | null; + user_id?: string | null; + } | null; + }; const [studios, setStudios] = useState([ { name: "Lone Star Studio",