Skip to content

Commit

Permalink
fix: issue Split bill - 'No results found' appears with lowcase
Browse files Browse the repository at this point in the history
  • Loading branch information
Luckyman0305 committed Aug 7, 2023
1 parent 7434331 commit 9783b2c
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,
participants.filter(participant => participant.searchText.includes(searchTerm)).length > 0
participants.filter(participant => participant.searchText.toLowerCase().includes(searchTerm.toLowerCase())).length > 0
);
const isOptionsDataReady = ReportUtils.isReportDataReady() && OptionsListUtils.isPersonalDetailsReady(personalDetails);

Expand Down

0 comments on commit 9783b2c

Please sign in to comment.