diff --git a/src/libs/actions/Report.js b/src/libs/actions/Report.js index 2c543efc17af..4c0a0d948d64 100644 --- a/src/libs/actions/Report.js +++ b/src/libs/actions/Report.js @@ -525,7 +525,7 @@ function updateReportActionMessage(reportID, sequenceNumber, message) { // If this is the most recent message, update the lastMessageText in the report object as well if (sequenceNumber === reportMaxSequenceNumbers[reportID]) { Onyx.merge(`${ONYXKEYS.COLLECTION.REPORT}${reportID}`, { - lastMessageText: message.html, + lastMessageText: message.text, }); } }