Merge pull request #211 from mirumee/fix/customer-invitation
Do not send customer invitation email
This commit is contained in:
commit
b32f36adda
2 changed files with 2 additions and 1 deletions
|
@ -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 service account section - #188 by @dominik-zeglen
|
||||||
- Add variant creator - #177 by @dominik-zeglen
|
- Add variant creator - #177 by @dominik-zeglen
|
||||||
- Add git hooks - #209 by @dominik-zeglen
|
- Add git hooks - #209 by @dominik-zeglen
|
||||||
|
- Do not send customer invitation email - #211 by @dominik-zeglen
|
||||||
|
|
|
@ -79,7 +79,7 @@ export const CustomerCreate: React.StatelessComponent<{}> = () => {
|
||||||
firstName: formData.customerFirstName,
|
firstName: formData.customerFirstName,
|
||||||
lastName: formData.customerLastName,
|
lastName: formData.customerLastName,
|
||||||
note: formData.note,
|
note: formData.note,
|
||||||
sendPasswordEmail: true
|
sendPasswordEmail: false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue