diff --git a/native/chat/chat-item-height-measurer.react.js b/native/chat/chat-item-height-measurer.react.js --- a/native/chat/chat-item-height-measurer.react.js +++ b/native/chat/chat-item-height-measurer.react.js @@ -34,10 +34,16 @@ if (item.itemType !== 'message') { return null; } - const { messageInfo, threadCreatedFromMessage, reactions } = item; + const { messageInfo, hasBeenEdited, threadCreatedFromMessage, reactions } = + item; if (messageInfo.type === messageTypes.TEXT) { - return JSON.stringify({ text: messageInfo.text }); + return JSON.stringify({ + text: messageInfo.text, + edited: getMessageLabel(hasBeenEdited, messageInfo.threadID), + sidebar: getInlineEngagementSidebarText(threadCreatedFromMessage), + reactions: reactionsToRawString(reactions), + }); } else if (item.robotext) { const { threadID } = item.messageInfo; return JSON.stringify({