Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
magsyg committed Nov 5, 2024
1 parent 2706b82 commit af8d028
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
Input,
Textarea,
} from '~/Components';
import type { DropDownOption } from '~/Components/Dropdown/Dropdown';
import type { DropdownOption } from '~/Components/Dropdown/Dropdown';
import { MultiSelect } from '~/Components/MultiSelect';
import {
getRecruitmentPositions,
Expand Down Expand Up @@ -55,7 +55,7 @@ export function RecruitmentInterviewGroupForm({ initialData, recruitmentId, shar
defaultValues: initialData,
});

const [positionOptions, setPositionOptions] = useState<DropDownOption<number>[]>([]);
const [positionOptions, setPositionOptions] = useState<DropdownOption<number>[]>([]);

const submitText = sharedInterviewGroupId ? t(KEY.common_save) : t(KEY.common_create);

Expand Down

0 comments on commit af8d028

Please sign in to comment.