※ 마이그레이션 완료 후, 미수정 사항들이 전부 반영될 예정입니다.
[파일, 폴더명]
util-constants.ts
confirm-travel-info-section.tsx
[변수명, 함수명]
const changeInputValue = (type: "email" | "password", value: string) => {
setInputValue({ ...inputValue, [type]: value });
if (!errorMsgState[type]) {
setErrorMsgState({ ...errorMsgState, [type]: true });
}
};
const initialValue: TravelInfoProp = {
travelType: "domestic",
title: "",
departureAt: "",
travelPeriod: "",
destination: "",
};