diff --git a/frontend/src/app/components/containers/complaints/complaint-filter.tsx b/frontend/src/app/components/containers/complaints/complaint-filter.tsx index 4b9894f96..de7acdb7c 100644 --- a/frontend/src/app/components/containers/complaints/complaint-filter.tsx +++ b/frontend/src/app/components/containers/complaints/complaint-filter.tsx @@ -46,10 +46,6 @@ export const ComplaintFilter: FC = ({ type }) => { dispatch, } = useContext(ComplaintFilterContext); - let officers = useAppSelector(selectOfficersDropdown(false)); - if (officers && officers[0]?.value !== "Unassigned") { - officers.unshift({ value: "Unassigned", label: "Unassigned" }); - } const agency = getUserAgency(); let officersByAgency = useAppSelector(selectOfficersByAgencyDropdown(agency)); if (officersByAgency && officersByAgency[0]?.value !== "Unassigned") { @@ -228,9 +224,8 @@ export const ComplaintFilter: FC = ({ type }) => {