From 7ae492e302e4b1bdcc6670e044b01de08d3d0cab Mon Sep 17 00:00:00 2001 From: nkdengineer Date: Sat, 27 Jul 2024 10:56:24 +0700 Subject: [PATCH] fix: message for clearing room description --- src/pages/home/report/ReportActionItem.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pages/home/report/ReportActionItem.tsx b/src/pages/home/report/ReportActionItem.tsx index 4c9671cc517a..c741be4ca3b4 100644 --- a/src/pages/home/report/ReportActionItem.tsx +++ b/src/pages/home/report/ReportActionItem.tsx @@ -646,6 +646,9 @@ function ReportActionItem({ children = ; } else if (action.actionName === CONST.REPORT.ACTIONS.TYPE.MERGED_WITH_CASH_TRANSACTION) { children = ; + } else if (action.actionName === CONST.REPORT.ACTIONS.TYPE.ROOM_CHANGE_LOG.UPDATE_ROOM_DESCRIPTION) { + const message = ReportActionsUtils.getUpdateRoomDescriptionMessage(action); + children = ; } else if (ReportActionsUtils.isActionOfType(action, CONST.REPORT.ACTIONS.TYPE.DISMISSED_VIOLATION)) { children = ; } else if (action.actionName === CONST.REPORT.ACTIONS.TYPE.POLICY_CHANGE_LOG.ADD_TAG) {