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",