@runtypelabs/react-flow 0.1.10 → 0.1.11

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/index.mjs CHANGED
@@ -370,7 +370,7 @@ function createDefaultStep(type, order = 0) {
370
370
  return {
371
371
  ...baseStep,
372
372
  config: {
373
- from: "no-reply@messages.runtype.com",
373
+ from: "{{_flow.id}}@runtype.email",
374
374
  to: "",
375
375
  subject: "",
376
376
  html: "",
@@ -2693,7 +2693,7 @@ var SendEmailNode = memo(function SendEmailNode2(props) {
2693
2693
  style: styles6.input,
2694
2694
  value: config.from || "",
2695
2695
  onChange: (e) => handleChange("from", e.target.value),
2696
- placeholder: "no-reply@messages.runtype.com",
2696
+ placeholder: "{{_flow.id}}@runtype.email",
2697
2697
  onKeyDown: (e) => e.stopPropagation()
2698
2698
  }
2699
2699
  )