Skip to content

Commit

Permalink
remove extra parens
Browse files Browse the repository at this point in the history
  • Loading branch information
jasperhuangg committed Sep 17, 2021
1 parent db8fbfc commit 392e0c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/actions/Report.js
Original file line number Diff line number Diff line change
Expand Up @@ -970,7 +970,7 @@ function fetchAllReports(
// data processing by Onyx.
const reportIDsWithMissingActions = _.chain(returnedReports)
.map(report => report.reportID)
.filter(reportID => (isReportMissingActions(reportID, reportMaxSequenceNumbers[reportID])));
.filter(reportID => isReportMissingActions(reportID, reportMaxSequenceNumbers[reportID]));

// Once we have the reports that are missing actions we will find the intersection between the most
// recently accessed reports and reports missing actions. Then we'll fetch the history for a small
Expand Down

0 comments on commit 392e0c6

Please sign in to comment.