Skip to content

Commit

Permalink
πŸ› fix: λˆ„λ½λœ μ‚¬μ—…μžλ“±λ‘λ²ˆν˜Έ μž…λ ₯ ui λ³€κ²½ 적용 #127
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMirror21 committed Jan 13, 2025
1 parent 441e6a0 commit ca6feec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ const IntegratedApplicationPreview = ({
</div>
</div>
</InputLayout>
{/* μ‚¬μ—…λ“±λ‘λ²ˆν˜Έ μž…λ ₯ */}
{/* μ‚¬μ—…μž λ“±λ‘λ²ˆν˜Έ μž…λ ₯ */}
<InputLayout
title="Business Registration No. Of New Workplace"
isEssential
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import {
usePostIntegratedApplicants,
usePutIntegratedApplicants,
} from '@/hooks/api/useDocument';
import { formatPhoneNumber, parsePhoneNumber } from '@/utils/information';
import { formatCompanyRegistrationNumber, formatPhoneNumber, parsePhoneNumber } from '@/utils/information';
import { useCurrentPostIdEmployeeStore } from '@/store/url';
import LoadingItem from '../Common/LoadingItem';
import { useAddressSearch } from '@/hooks/api/useAddressSearch';
Expand Down Expand Up @@ -493,19 +493,20 @@ const IntegratedApplicationWriteForm = ({
canDelete={false}
/>
</InputLayout>
{/* μ‚¬μ—…λ“±λ‘λ²ˆν˜Έ μž…λ ₯ */}
{/* μ‚¬μ—…μžλ“±λ‘λ²ˆν˜Έ μž…λ ₯ */}
<InputLayout
title="Business Registration No. Of New Workplace"
isEssential
>
<Input
inputType={InputType.TEXT}
placeholder="000/00/00000"
placeholder="X X X / X X / X X X X X"
value={newDocumentData.new_work_place_registration_number}
onChange={(value) =>
setNewDocumentData({
...newDocumentData,
new_work_place_registration_number: value,
new_work_place_registration_number:
formatCompanyRegistrationNumber(value),
})
}
canDelete={false}
Expand Down

0 comments on commit ca6feec

Please sign in to comment.