Skip to content

Commit

Permalink
remove isDeletedAction check
Browse files Browse the repository at this point in the history
  • Loading branch information
tienifr committed Jul 23, 2023
1 parent 6287210 commit 9bd655d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/ReportActionsUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ function shouldReportActionBeVisible(reportAction, key) {
* @returns {Boolean}
*/
function shouldReportActionBeVisibleAsLastAction(reportAction) {
return shouldReportActionBeVisible(reportAction, reportAction.reportActionID) && !isWhisperAction(reportAction) && !isDeletedAction(reportAction);
return shouldReportActionBeVisible(reportAction, reportAction.reportActionID) && !isWhisperAction(reportAction);
}

/**
Expand Down

0 comments on commit 9bd655d

Please sign in to comment.