Skip to content

Commit

Permalink
remove unused variables and imports
Browse files Browse the repository at this point in the history
  • Loading branch information
khavinshankar committed Dec 7, 2023
1 parent aff3756 commit 180a0a7
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/Components/Users/UserFilter.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
import { useEffect } from "react";
import { useDispatch } from "react-redux";
import { getDistrict } from "../../Redux/actions";
import { navigate } from "raviger";
import DistrictSelect from "../Facility/FacilityFilter/DistrictSelect";
import { parsePhoneNumber } from "../../Utils/utils";
import TextFormField from "../Form/FormFields/TextFormField";
Expand All @@ -23,7 +19,6 @@ const parsePhoneNumberForFilterParam = (phoneNumber: string) => {

export default function UserFilter(props: any) {
const { filter, onChange, closeFilter, removeFilters } = props;
const dispatch: any = useDispatch();
const [filterState, setFilterState] = useMergeState({
first_name: filter.first_name || "",
last_name: filter.last_name || "",
Expand Down

0 comments on commit 180a0a7

Please sign in to comment.