diff --git a/src/pages/home/report/ReportActionItem.js b/src/pages/home/report/ReportActionItem.js index 9c374b130a1..396da17568e 100644 --- a/src/pages/home/report/ReportActionItem.js +++ b/src/pages/home/report/ReportActionItem.js @@ -156,7 +156,14 @@ function ReportActionItem(props) { const decisions = lodashGet(props, ['action', 'message', 0, 'moderationDecisions'], []); const latestDecision = lodashGet(_.last(decisions), 'decision', ''); useEffect(() => { - if (props.action.actionName !== CONST.REPORT.ACTIONS.TYPE.ADDCOMMENT || _.isEmpty(latestDecision)) { + if (props.action.actionName !== CONST.REPORT.ACTIONS.TYPE.ADDCOMMENT) { + return; + } + + // Hide reveal message button and show the message if latestDecision is changed to empty + if (_.isEmpty(latestDecision)) { + setModerationDecision(CONST.MODERATION.MODERATOR_DECISION_APPROVED); + setIsHidden(false); return; }