Skip to content

Commit

Permalink
Run prettier.
Browse files Browse the repository at this point in the history
  • Loading branch information
DanutGavrus committed Aug 23, 2023
1 parent b9cec46 commit 0a3c042
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/libs/SidebarUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ Onyx.connect({
// does not match a closed or created state.
const reportActionsForDisplay = _.filter(
actionsArray,
(reportAction, actionKey) => ReportActionsUtils.shouldReportActionBeVisible(reportAction, actionKey) && reportAction.actionName !== CONST.REPORT.ACTIONS.TYPE.CREATED && reportAction.pendingAction !== CONST.RED_BRICK_ROAD_PENDING_ACTION.DELETE,
(reportAction, actionKey) =>
ReportActionsUtils.shouldReportActionBeVisible(reportAction, actionKey) &&
reportAction.actionName !== CONST.REPORT.ACTIONS.TYPE.CREATED &&
reportAction.pendingAction !== CONST.RED_BRICK_ROAD_PENDING_ACTION.DELETE,
);
visibleReportActionItems[reportID] = _.last(reportActionsForDisplay);
},
Expand Down

0 comments on commit 0a3c042

Please sign in to comment.