From 2055d3ddebfd69cfdd5aa545c64243c935cd1a33 Mon Sep 17 00:00:00 2001 From: Luckyman0305 Date: Thu, 10 Aug 2023 16:09:10 -0700 Subject: [PATCH] fix: lint error --- .../MoneyRequestParticipantsSplitSelector.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/iou/steps/MoneyRequstParticipantsPage/MoneyRequestParticipantsSplitSelector.js b/src/pages/iou/steps/MoneyRequstParticipantsPage/MoneyRequestParticipantsSplitSelector.js index cfa7c0a8678c..2ebddbdd8741 100755 --- a/src/pages/iou/steps/MoneyRequstParticipantsPage/MoneyRequestParticipantsSplitSelector.js +++ b/src/pages/iou/steps/MoneyRequstParticipantsPage/MoneyRequestParticipantsSplitSelector.js @@ -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);