Skip to content

Commit

Permalink
🔧 chore: 상대경로 절대 경로로 변경 #54
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMirror21 committed Oct 27, 2024
1 parent 1252a75 commit d26fd4d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/components/Document/write/EmployerInfoSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
LaborContractEmployerInfoProperty,
} from '@/types/api/document';
import { Address } from '@/types/api/users';
import { WorkDayTime } from '../../../types/api/document';
import { WorkDayTime } from '@/types/api/document';
import {
arrayToString,
getDetailAddress,
Expand Down
18 changes: 9 additions & 9 deletions src/components/WriteDocuments/IntegratedApplicationWriteForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@ import { IntegratedApplicationData } from '@/types/api/document';
import { AddressType, Document } from '@/types/api/map';
import { pick } from '@/utils/map';
import { useCallback, useEffect, useState } from 'react';
import Input from '../Common/Input';
import Input from '@/components/Common/Input';
import { InputType } from '@/types/common/input';
import Dropdown, { DropdownModal } from '../Common/Dropdown';
import Dropdown, { DropdownModal } from '@/components/Common/Dropdown';
import { Map, MapMarker } from 'react-kakao-maps-sdk';
import { country, gender, phone } from '@/constants/information';
import RadioButton from '../Information/RadioButton';
import RadioButton from '@/components/Information/RadioButton';
import { Gender } from '@/types/api/users';
import InputLayout from '../Document/write/InputLayout';
import { isNotEmpty, propertyToString } from '../../utils/document';
import Notice from '../Document/write/Notice';
import InputLayout from '@/components/Document/write/InputLayout';
import { isNotEmpty, propertyToString } from '@/utils/document';
import Notice from '@/components/Document/write/Notice';
import BottomSheetLayout from '@/components/Common/BottomSheetLayout';
import SearchSchoolBottomSheet from '../Document/write/SearchSchoolBottomSheet';
import SearchSchoolBottomSheet from '@/components/Document/write/SearchSchoolBottomSheet';
import SignaturePad from '@/components/Document/write/SignaturePad';
import BottomButtonPanel from '../Common/BottomButtonPanel';
import Button from '../Common/Button';
import BottomButtonPanel from '@/components/Common/BottomButtonPanel';
import Button from '@/components/Common/Button';
import { usePostIntegratedApplicants } from '@/hooks/api/useDocument';
import { formatPhoneNumber } from '@/utils/information';

Expand Down

0 comments on commit d26fd4d

Please sign in to comment.