Merge pull request #211 from mirumee/fix/customer-invitation

Do not send customer invitation email
This commit is contained in:
Marcin Gębala 2019-10-11 15:11:00 +02:00 committed by GitHub
commit b32f36adda
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -34,3 +34,4 @@ All notable, unreleased changes to this project will be documented in this file.
- Add service account section - #188 by @dominik-zeglen
- Add variant creator - #177 by @dominik-zeglen
- Add git hooks - #209 by @dominik-zeglen
- Do not send customer invitation email - #211 by @dominik-zeglen

View file

@ -79,7 +79,7 @@ export const CustomerCreate: React.StatelessComponent<{}> = () => {
firstName: formData.customerFirstName,
lastName: formData.customerLastName,
note: formData.note,
sendPasswordEmail: true
sendPasswordEmail: false
}
}
});