user_group_pill: Remove unnecessary truthy filter on user_ids.

The filter was not doing anything to the user_id array, not sure why it
was introduced in ce4cf66f3f.
This commit is contained in:
Shubham Padia 2024-07-09 09:58:50 +00:00 committed by Tim Abbott
parent ffd49ac35b
commit c7e59ed761
1 changed files with 0 additions and 1 deletions

View File

@ -57,7 +57,6 @@ export function get_user_ids(pill_widget: UserGroupPillWidget | CombinedPillCont
user_ids = [...new Set(user_ids)];
user_ids.sort((a, b) => a - b);
user_ids = user_ids.filter(Boolean);
return user_ids;
}