@embedreach/components 0.2.10 → 0.2.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/chunks/index.js +4 -1
- package/dist/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/chunks/index.js
CHANGED
|
@@ -85400,7 +85400,10 @@ const AutomationFlowMain = () => {
|
|
|
85400
85400
|
}
|
|
85401
85401
|
return step.actionData.actionType === "send_communication";
|
|
85402
85402
|
});
|
|
85403
|
-
let renderTriggerAndAudienceStep = () =>
|
|
85403
|
+
let renderTriggerAndAudienceStep = () => (
|
|
85404
|
+
// We need this otherwise we can get a 'Encountered two children with the same key, ``.'
|
|
85405
|
+
/* @__PURE__ */ jsx("div", {}, "empty-trigger-audience")
|
|
85406
|
+
);
|
|
85404
85407
|
if (isDetailsVisible || automation2.triggerType === AutomationTriggerType.ONE_TIME) {
|
|
85405
85408
|
renderTriggerAndAudienceStep = () => {
|
|
85406
85409
|
return /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-3", children: [
|