Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
perunt committed Mar 13, 2024
1 parent 2b77edc commit 2c809c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/home/ReportScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ function ReportScreen({
if (!reportActionIDFromRoute || !sortedAllReportActions) {
return false;
}
const action = sortedAllReportActions.find(item => item.reportActionID === reportActionIDFromRoute);
const action = sortedAllReportActions.find((item) => item.reportActionID === reportActionIDFromRoute);
return action && ReportActionsUtils.isDeletedAction(action);
}, [reportActionIDFromRoute, sortedAllReportActions]);

Expand Down

0 comments on commit 2c809c4

Please sign in to comment.