Add ProjectApplication type
cgen-d95d0bd418de4aad822a839c5c3b971f
This commit is contained in:
parent
601dbfb757
commit
d23b45b901
1 changed files with 13 additions and 0 deletions
|
|
@ -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<Studio[]>([
|
||||
{
|
||||
name: "Lone Star Studio",
|
||||
|
|
|
|||
Loading…
Reference in a new issue