※ 마이그레이션 완료 후, 미수정 사항들이 전부 반영될 예정입니다.

✏️ 들여쓰기

✏️ 문장의 종료

✏️ 명명 규칙

[파일, 폴더명]

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: "",
};