diff --git a/internal_frontend/components/customers/modal/NewCustomerModal.tsx b/internal_frontend/components/customers/modal/NewCustomerModal.tsx index 9b127b6..65a8d68 100644 --- a/internal_frontend/components/customers/modal/NewCustomerModal.tsx +++ b/internal_frontend/components/customers/modal/NewCustomerModal.tsx @@ -20,7 +20,7 @@ interface NewCustomerModalProps { onCustomerCreated?: () => void; } -export function NewCustomerModal({ onCustomerCreated }: NewCustomerModalProps) { +export function NewCustomerModal({onCustomerCreated}: Readonly) { const [step, setStep] = useState(1); const [open, setOpen] = useState(false); const [email, setEmail] = useState("");