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
@@ -30,7 +30,7 @@ interface Props {
projectId: string;
open: boolean;
onOpenChange: (open: boolean) => void;
onCreate: (day: { id: string; date: string; unit: string; label: string | null }) => void;
onCreate: (day: { id: string; date: string; unit: string; label: string | null }) => Promise<void> | void;
}
export function NewShootDayDialog({ projectId, open, onOpenChange, onCreate }: Props) {