Skip to content

Commit

Permalink
Merge pull request Expensify#22407 from hoangzinh/df/20952
Browse files Browse the repository at this point in the history
Revert the ability to search a report by participant accountID
  • Loading branch information
marcaaron authored Jul 10, 2023
2 parents b053cc9 + 48c44e4 commit 2f57a75
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/libs/OptionsListUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,9 +251,6 @@ function getParticipantNames(personalDetailList) {
// `_.contains(Array, value)` for an Array with n members.
const participantNames = new Set();
_.each(personalDetailList, (participant) => {
if (participant.accountID) {
participantNames.add(participant.accountID.toString());
}
if (participant.login) {
participantNames.add(participant.login.toLowerCase());
}
Expand Down

0 comments on commit 2f57a75

Please sign in to comment.