From af8d028f48362bce7e8d489145d558cebfa8d624 Mon Sep 17 00:00:00 2001 From: magsyg Date: Tue, 5 Nov 2024 20:10:01 +0100 Subject: [PATCH] fix --- .../RecruitmentInterviewGroupForm.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/PagesAdmin/RecruitmentInterviewGroupFormAdminPage/RecruitmentInterviewGroupForm.tsx b/frontend/src/PagesAdmin/RecruitmentInterviewGroupFormAdminPage/RecruitmentInterviewGroupForm.tsx index 682a25fc6..5bfddc9fc 100644 --- a/frontend/src/PagesAdmin/RecruitmentInterviewGroupFormAdminPage/RecruitmentInterviewGroupForm.tsx +++ b/frontend/src/PagesAdmin/RecruitmentInterviewGroupFormAdminPage/RecruitmentInterviewGroupForm.tsx @@ -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, @@ -55,7 +55,7 @@ export function RecruitmentInterviewGroupForm({ initialData, recruitmentId, shar defaultValues: initialData, }); - const [positionOptions, setPositionOptions] = useState[]>([]); + const [positionOptions, setPositionOptions] = useState[]>([]); const submitText = sharedInterviewGroupId ? t(KEY.common_save) : t(KEY.common_create);