Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
elkolotfi committed Aug 30, 2024
1 parent 56fae2b commit 50d518f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/components/Form/CountrySelect.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import Select, { StylesConfig } from 'react-select';
import { useEffect, useMemo, useState } from 'react';
import { CountryOption } from '@/types/country-option.type';
import { countries } from 'countries-list';
import getCountryFlag from 'country-flag-icons/unicode';
import { CountryOption } from '@/types/country-option.type';
import { useMemo, useState } from 'react';
import Select, { StylesConfig } from 'react-select';

interface CountrySelectProps {
onChange: (selected: readonly CountryOption[]) => void;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Misc/AccessFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { AccessSelect } from "@/components/Form/AccessSelect";
import CountrySelect from "@/components/Form/CountrySelect";
import { AccessOption } from "@/types/access-option.type";
import { CountryOption } from "@/types/country-option.type";
import { useCallback, useEffect, useState } from "react";
import { useEffect, useState } from "react";
import { FaRotate } from "react-icons/fa6";

export type AccessFilters = { [passport: string]: readonly AccessOption[] }
Expand Down

0 comments on commit 50d518f

Please sign in to comment.