Skip to content

Commit

Permalink
fix :: 에러 문구 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
KANGYONGSU23 committed Apr 9, 2024
1 parent 10055d4 commit f3f7e51
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/apis/applications/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export function useApplyToCompany(recruitmentId: string) {
case 404:
append({
title: "",
message: "모집의뢰서가 존재하지 않습니다.",
message: "모집 기간이 아니거나 모집의뢰서가 존재하지 않습니다.",
type: "RED",
});
break;
Expand Down Expand Up @@ -85,6 +85,7 @@ export function useReapply(applicationId: string | null) {
message: "승인요청 또는 반려상태가 아닙니다.",
type: "RED",
});
break;
case 401:
append({
title: "",
Expand All @@ -95,7 +96,7 @@ export function useReapply(applicationId: string | null) {
case 404:
append({
title: "",
message: "모집의뢰서가 존재하지 않습니다.",
message: "모집 기간이 아니거나 모집의뢰서가 존재하지 않습니다.",
type: "RED",
});
break;
Expand All @@ -106,7 +107,7 @@ export function useReapply(applicationId: string | null) {
"이미 해당 모집의뢰에 지원했거나 승인된 지원요청이 존재합니다.",
type: "RED",
});

break;
default:
break;
}
Expand Down

0 comments on commit f3f7e51

Please sign in to comment.