Skip to content

Commit

Permalink
Merge pull request #24395 from luckyman0305/lucky
Browse files Browse the repository at this point in the history
fix: lint error
  • Loading branch information
madmax330 authored Aug 11, 2023
2 parents 39ae317 + 2055d3d commit 1e3f952
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 1e3f952

Please sign in to comment.