@bigbinary/neeto-molecules 1.0.106 → 1.0.107
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/EmailForm.cjs.js +2 -2
- package/dist/EmailForm.cjs.js.map +1 -1
- package/dist/EmailForm.js +2 -2
- package/dist/EmailForm.js.map +1 -1
- package/package.json +1 -1
package/dist/EmailForm.cjs.js
CHANGED
|
@@ -151,7 +151,7 @@ var INITIAL_FORM_VALUES = {
|
|
|
151
151
|
sendTo: [],
|
|
152
152
|
sendToCc: [],
|
|
153
153
|
sendToBcc: [],
|
|
154
|
-
replyTo:
|
|
154
|
+
replyTo: "",
|
|
155
155
|
showCopyEmails: false,
|
|
156
156
|
subject: "",
|
|
157
157
|
message: ""
|
|
@@ -2923,7 +2923,7 @@ var EmailFormProvider = function EmailFormProvider(_ref) {
|
|
|
2923
2923
|
customValidations: customValidations
|
|
2924
2924
|
}),
|
|
2925
2925
|
initialValues: _objectSpread(_objectSpread({}, initialValues), {}, {
|
|
2926
|
-
replyTo: initialValues.replyTo ||
|
|
2926
|
+
replyTo: initialValues.replyTo || globalProps.user.email
|
|
2927
2927
|
}),
|
|
2928
2928
|
onSubmit: onSubmit
|
|
2929
2929
|
}, formikProps)
|