Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rlinoz committed Nov 28, 2023
1 parent dc5be9c commit 4a7cc0b
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/libs/ReportUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4087,17 +4087,14 @@ function getParticipantsIDs(report: OnyxEntry<Report>): number[] {
}

/**
* Returns an array of the visible member accountIDs for a report
*
* @param {Object} report
* @returns {Array}
* Returns an array of the visible member accountIDs for a report*
*/
function getVisibleMemberIDs(report: OnyxEntry<Report>): number[] {
if (!report) {
return [];
}

const visibleChatMemberAccountIDs = report.visibleChatMemberAccountIDs || [];
const visibleChatMemberAccountIDs = report.visibleChatMemberAccountIDs ?? [];

// Build participants list for IOU/expense reports
if (isMoneyRequestReport(report)) {
Expand Down

0 comments on commit 4a7cc0b

Please sign in to comment.