Skip to content

Commit

Permalink
hotfix: 백엔드 수정 사항 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
JJIIIINN committed Dec 31, 2023
1 parent c4101b4 commit 35bea5c
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 39 deletions.
12 changes: 0 additions & 12 deletions src/components/main/NewComerHonorableAllowanceTabBody.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ const NewComerHonorableAllowanceTabBody = ({
applicantID: "",
applicantName: "",
applicantPhoneNumber: "",
applicantPostalCode: "",
applicationDate: "",
applicationReason: "",
bankAccountNumber: "",
Expand All @@ -45,7 +44,6 @@ const NewComerHonorableAllowanceTabBody = ({
applicantID,
applicantName,
applicantPhoneNumber,
applicantPostalCode,
applicationDate,
applicationReason,
bankAccountNumber,
Expand Down Expand Up @@ -84,7 +82,6 @@ const NewComerHonorableAllowanceTabBody = ({
applicantID: data.applicantID,
applicantName: data.applicantName,
applicantPhoneNumber: data.applicantPhoneNumber,
applicantPostalCode: data.applicantPostalCode,
applicationDate: data.applicationDate,
applicationReason: data.applicationReason,
bankAccountNumber: data.bankAccountNumber,
Expand Down Expand Up @@ -167,15 +164,6 @@ const NewComerHonorableAllowanceTabBody = ({
}}
error={!applicantGender}
/>
<ExcelValue
name="applicantPostalCode"
value={applicantPostalCode}
handleChange={(e) => {
handleChange(e);
editExcelForm();
}}
error={!regex.postalCode.test(applicantPostalCode)}
/>
<ExcelValue
name="applicantAddressDetail"
value={applicantAddressDetail}
Expand Down
12 changes: 0 additions & 12 deletions src/components/main/NewComerWarVeteranSpouseTabBody.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ const NewComerWarVeteranSpouseTabBody = ({
applicantID: "",
applicantName: "",
applicantPhoneNumber: "",
applicantPostalCode: "",
applicationDate: "",
applicationReason: "",
bankAccountNumber: "",
Expand All @@ -43,7 +42,6 @@ const NewComerWarVeteranSpouseTabBody = ({
applicantID,
applicantName,
applicantPhoneNumber,
applicantPostalCode,
applicationDate,
applicationReason,
bankAccountNumber,
Expand Down Expand Up @@ -81,7 +79,6 @@ const NewComerWarVeteranSpouseTabBody = ({
applicantID: data.applicantID,
applicantName: data.applicantName,
applicantPhoneNumber: data.applicantPhoneNumber,
applicantPostalCode: data.applicantPostalCode,
applicationDate: data.applicationDate,
applicationReason: data.applicationReason,
bankAccountNumber: data.bankAccountNumber,
Expand Down Expand Up @@ -147,15 +144,6 @@ const NewComerWarVeteranSpouseTabBody = ({
}}
error={!regex.phoneNumber.test(applicantPhoneNumber)}
/>
<ExcelValue
name="applicantPostalCode"
value={applicantPostalCode}
handleChange={(e) => {
handleChange(e);
editExcelForm();
}}
error={!regex.postalCode.test(applicantPostalCode)}
/>
<ExcelValue
name="applicantAddressDetail"
value={applicantAddressDetail}
Expand Down
12 changes: 0 additions & 12 deletions src/components/main/NewComerWarVeteranTabBody.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ const NewComerWarVeteranTabBody = ({
applicantName: "",
applicantID: "",
applicantBirthday: "",
applicantPostalCode: "",
applicantAddressDetail: "",
applicantPhoneNumber: "",
hangJungDong: "",
Expand All @@ -40,7 +39,6 @@ const NewComerWarVeteranTabBody = ({
applicantID,
applicantName,
applicantPhoneNumber,
applicantPostalCode,
applicationDate,
applicationReason,
bankAccountNumber,
Expand Down Expand Up @@ -75,7 +73,6 @@ const NewComerWarVeteranTabBody = ({
applicantID: data.applicantID,
applicantName: data.applicantName,
applicantPhoneNumber: data.applicantPhoneNumber,
applicantPostalCode: data.applicantPostalCode,
applicationDate: data.applicationDate,
applicationReason: data.applicationReason,
bankAccountNumber: data.bankAccountNumber,
Expand Down Expand Up @@ -137,15 +134,6 @@ const NewComerWarVeteranTabBody = ({
}}
error={!regex.date.test(applicantBirthday)}
/>
<ExcelValue
name="applicantPostalCode"
value={applicantPostalCode}
handleChange={(e) => {
handleChange(e);
editExcelForm();
}}
error={!regex.postalCode.test(applicantPostalCode)}
/>
<ExcelValue
name="applicantAddressDetail"
value={applicantAddressDetail}
Expand Down
2 changes: 0 additions & 2 deletions src/constants/main/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,6 @@ export const NewComerWarVeteranSpouseTabHeader = [
"신청인 성명",
"신청인 주민등록번호",
"신청인 전화번호",
"신청인 우편번호",
"신청인 상세주소\n(도로명주소)",
"행정동",
"참전유공자 성명",
Expand All @@ -370,7 +369,6 @@ export const NewComerHonorableAllowanceTabHeader = [
"신청인 생년월일",
"신청인 주민등록번호",
"신청인 성별",
"신청인 우편번호",
"신청인 상세주소\n(도로명주소)",
"신청인 전화번호",
"행정동",
Expand Down
1 change: 0 additions & 1 deletion src/models/response/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ export interface newComerTabType {
applicantName: string;
applicantID: string;
applicantBirthday?: string;
applicantPostalCode: string;
applicantAddressDetail: string;
applicantPhoneNumber: string;
hangJungDong: string;
Expand Down

0 comments on commit 35bea5c

Please sign in to comment.