diff --git a/src/components/ApplicationDetail/ApplicationPanel/ApplicationPanel.component.tsx b/src/components/ApplicationDetail/ApplicationPanel/ApplicationPanel.component.tsx index facb0dec..7a5c4cc2 100644 --- a/src/components/ApplicationDetail/ApplicationPanel/ApplicationPanel.component.tsx +++ b/src/components/ApplicationDetail/ApplicationPanel/ApplicationPanel.component.tsx @@ -83,6 +83,7 @@ const ControlArea = ({ const [isDatePickerOpened, setIsDatePickerOpened] = useState(false); const outerRef = useRef(null); const selectedApplicationResultStatusRef = useRef(null); + const selectedInterviewStartedAtRef = useRef(null); const handleSelectDate = useCallback( (clickedDate: Dayjs) => { @@ -194,6 +195,7 @@ const ControlArea = ({ disabled={isInterviewConfirmed} defaultValue={timeOptions.find((option) => option.value === dayjs(date).format())} {...register(`interviewStartedAt`, { required: true })} + ref={selectedInterviewStartedAtRef} />