Skip to content

Commit

Permalink
Merge pull request #1207 from nyaruka/fix-compose
Browse files Browse the repository at this point in the history
Create localized format for legacy created compose
  • Loading branch information
ericnewcomer authored Dec 11, 2023
2 parents de048ae + 1c2f48c commit bf93534
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/flow/actions/helpers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Expand Down

0 comments on commit bf93534

Please sign in to comment.