diff --git a/src/components/flow/actions/helpers.tsx b/src/components/flow/actions/helpers.tsx index 336c68817..70e53cd27 100644 --- a/src/components/flow/actions/helpers.tsx +++ b/src/components/flow/actions/helpers.tsx @@ -111,7 +111,7 @@ export const getCompose = (action: BroadcastMsg = null): string => { return getEmptyComposeValue(); } if (!action.compose) { - return JSON.stringify({ text: action.text, attachments: [] }); + return JSON.stringify({ und: { text: action.text, attachments: [] } }); } return action.compose; };