From f3f7e51eab8906c3260cb2e4abe36a4c98c949b9 Mon Sep 17 00:00:00 2001 From: KANGYONGSU23 Date: Tue, 9 Apr 2024 19:57:14 +0900 Subject: [PATCH] =?UTF-8?q?fix=20::=20=EC=97=90=EB=9F=AC=20=EB=AC=B8?= =?UTF-8?q?=EA=B5=AC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apis/applications/index.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/apis/applications/index.ts b/src/apis/applications/index.ts index c0ffead..fbfb42e 100644 --- a/src/apis/applications/index.ts +++ b/src/apis/applications/index.ts @@ -36,7 +36,7 @@ export function useApplyToCompany(recruitmentId: string) { case 404: append({ title: "", - message: "모집의뢰서가 존재하지 않습니다.", + message: "모집 기간이 아니거나 모집의뢰서가 존재하지 않습니다.", type: "RED", }); break; @@ -85,6 +85,7 @@ export function useReapply(applicationId: string | null) { message: "승인요청 또는 반려상태가 아닙니다.", type: "RED", }); + break; case 401: append({ title: "", @@ -95,7 +96,7 @@ export function useReapply(applicationId: string | null) { case 404: append({ title: "", - message: "모집의뢰서가 존재하지 않습니다.", + message: "모집 기간이 아니거나 모집의뢰서가 존재하지 않습니다.", type: "RED", }); break; @@ -106,7 +107,7 @@ export function useReapply(applicationId: string | null) { "이미 해당 모집의뢰에 지원했거나 승인된 지원요청이 존재합니다.", type: "RED", }); - + break; default: break; }