diff --git a/frontend/src/constants/application/29/designer.ts b/frontend/src/constants/application/29/designer.ts index 64c47c4f..7e01e89c 100644 --- a/frontend/src/constants/application/29/designer.ts +++ b/frontend/src/constants/application/29/designer.ts @@ -170,14 +170,14 @@ export const APPLICATION_DESIGN: ApplicationQuestion[] = [ title: "에코노베이션은 3학기 이상의 활동과 매주 금요일 17시 주간발표 참여가 필수이며, 최종 합격 시 신입 기수로 구성된 팀으로 한 학기 동안 활동하게 됩니다. \n또한, 에코노베이션에서 운영되고 있는 다양한 부서 활동과 네트워킹 행사에 적극적인 참여를 권장합니다.", subtitle: - "위 내용을 확인하셨으면 '확인했습니다'를 기입해주세요.\n확인하지 않았을 시 합격이 취소될 수 있습니다.", + "위 내용을 확인하셨으면 '확인했습니다.'를 기입해주세요.\n확인하지 않았을 시 합격이 취소될 수 있습니다.", require: true, nodes: [ { type: "text", name: "check", validate: "confirmationString", - errorMessages: '"확인했습니다"를 입력해주세요.', + errorMessages: '"확인했습니다."를 입력해주세요.', require: true, }, ], diff --git a/frontend/src/constants/application/29/developer.ts b/frontend/src/constants/application/29/developer.ts index ea0b7d9d..06221167 100644 --- a/frontend/src/constants/application/29/developer.ts +++ b/frontend/src/constants/application/29/developer.ts @@ -139,14 +139,14 @@ export const APPLICATION_DEVELOPER: ApplicationQuestion[] = [ title: "에코노베이션은 3학기 이상의 활동과 매주 금요일 17시 주간발표 참여가 필수이며, 최종 합격 시 신입 기수로 구성된 팀으로 한 학기 동안 활동하게 됩니다. \n또한, 에코노베이션에서 운영되고 있는 다양한 부서 활동과 네트워킹 행사에 적극적인 참여를 권장합니다.", subtitle: - "위 내용을 확인하셨으면 '확인했습니다'를 기입해주세요.\n확인하지 않았을 시 합격이 취소될 수 있습니다.", + "위 내용을 확인하셨으면 '확인했습니다.'를 기입해주세요.\n확인하지 않았을 시 합격이 취소될 수 있습니다.", require: true, nodes: [ { type: "text", name: "check", validate: "confirmationString", - errorMessages: '"확인했습니다"를 입력해주세요.', + errorMessages: '"확인했습니다."를 입력해주세요.', require: true, }, ], diff --git a/frontend/src/constants/application/29/manager.ts b/frontend/src/constants/application/29/manager.ts index 9e53d0b2..808c22d8 100644 --- a/frontend/src/constants/application/29/manager.ts +++ b/frontend/src/constants/application/29/manager.ts @@ -190,14 +190,14 @@ export const APPLICATION_MANAGER: ApplicationQuestion[] = [ title: "에코노베이션은 3학기 이상의 활동과 매주 금요일 17시 주간발표 참여가 필수이며, 최종 합격 시 신입 기수로 구성된 팀으로 한 학기 동안 활동하게 됩니다. \n또한, 에코노베이션에서 운영되고 있는 다양한 부서 활동과 네트워킹 행사에 적극적인 참여를 권장합니다.", subtitle: - "위 내용을 확인하셨으면 '확인했습니다'를 기입해주세요.\n확인하지 않았을 시 합격이 취소될 수 있습니다.", + "위 내용을 확인하셨으면 '확인했습니다.'를 기입해주세요.\n확인하지 않았을 시 합격이 취소될 수 있습니다.", require: true, nodes: [ { type: "text", name: "check", validate: "confirmationString", - errorMessages: '"확인했습니다"를 입력해주세요.', + errorMessages: '"확인했습니다."를 입력해주세요.', require: true, }, ], diff --git a/frontend/src/hooks/useApplication.tsx b/frontend/src/hooks/useApplication.tsx index a5f93af2..05439abd 100644 --- a/frontend/src/hooks/useApplication.tsx +++ b/frontend/src/hooks/useApplication.tsx @@ -42,7 +42,9 @@ export const useApplication = () => { case "email": return !isEmail(localStorageValueFromName) ? "email" : ""; case "check": - return localStorageValueFromName !== "확인했습니다" ? "check" : ""; + return !localStorageValueFromName.includes("확인했습니다") + ? "check" + : ""; case "channel": return localStorageValueFromName.length === 0 && localStorage.get("channelEtc", EMPTY_STRING).length === 0