Supervisor feature
Deploy / deploy (push) Successful in 2m40s

This commit is contained in:
twotalesanimation
2026-07-11 16:12:41 +02:00
parent e24fd8eda0
commit bb61813b04
4 changed files with 95 additions and 34 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ interface Props {
shootDayId: string;
open: boolean;
onOpenChange: (open: boolean) => void;
onCreated: (setup: { id: string; name: string }) => void;
onCreated: (setup: { id: string; name: string }) => Promise<void> | void;
}
export function NewSetupDialog({ shootDayId, open, onOpenChange, onCreated }: Props) {