Skip to content

Commit

Permalink
fix: lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
Luckyman0305 committed Aug 10, 2023
1 parent ba95ec6 commit 2055d3d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ function MoneyRequestParticipantsSplitSelector({betas, participants, personalDet
Boolean(newChatOptions.userToInvite),
searchTerm,
maxParticipantsReached,
_.some((participant) => participant.searchText.toLowerCase().includes(searchTerm.toLowerCase())),
_.some(participants, (participant) => participant.searchText.toLowerCase().includes(searchTerm.toLowerCase())),
);
const isOptionsDataReady = ReportUtils.isReportDataReady() && OptionsListUtils.isPersonalDetailsReady(personalDetails);

Expand Down

0 comments on commit 2055d3d

Please sign in to comment.