From aec3e3ec738703520ac99c31f20b86f7c5cb7b11 Mon Sep 17 00:00:00 2001 From: dominik-zeglen Date: Fri, 11 Oct 2019 14:58:14 +0200 Subject: [PATCH] Do not send invitation email --- src/customers/views/CustomerCreate.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/customers/views/CustomerCreate.tsx b/src/customers/views/CustomerCreate.tsx index e0a273f51..679864da5 100644 --- a/src/customers/views/CustomerCreate.tsx +++ b/src/customers/views/CustomerCreate.tsx @@ -79,7 +79,7 @@ export const CustomerCreate: React.StatelessComponent<{}> = () => { firstName: formData.customerFirstName, lastName: formData.customerLastName, note: formData.note, - sendPasswordEmail: true + sendPasswordEmail: false } } });