From 1c2f48c27a5cb8406f760bb5d38352b1351ac866 Mon Sep 17 00:00:00 2001 From: Eric Newcomer Date: Mon, 11 Dec 2023 23:05:27 +0000 Subject: [PATCH] Create localized format for legacy created compose --- src/components/flow/actions/helpers.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; };