From e1805c70699004fab917415f62c0498f25c0d2a2 Mon Sep 17 00:00:00 2001 From: happhee Date: Fri, 18 Oct 2024 20:22:36 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix=20:=20=EC=9D=84/=EB=A5=BC=20=EC=A1=B0?= =?UTF-8?q?=EA=B1=B4=EB=AC=B8=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/recruit/RecruitField/RecruitFieldExplain.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/recruit/RecruitField/RecruitFieldExplain.tsx b/components/recruit/RecruitField/RecruitFieldExplain.tsx index d6902eb..8071262 100644 --- a/components/recruit/RecruitField/RecruitFieldExplain.tsx +++ b/components/recruit/RecruitField/RecruitFieldExplain.tsx @@ -45,7 +45,9 @@ function RecruitFieldExplain({ - 이런 {fieldName}를
찾습니다 🔎 + 이런 {fieldName} + {fieldName === 'PM' ? '을' : '를'} +
찾습니다 🔎
Date: Fri, 25 Oct 2024 21:12:27 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix=20:=20=EB=AA=A8=EC=A7=91=EA=B8=B0?= =?UTF-8?q?=EA=B0=84=20=EC=A2=85=EB=A3=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- database/recruit.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/database/recruit.ts b/database/recruit.ts index 16caff0..eaab5e3 100644 --- a/database/recruit.ts +++ b/database/recruit.ts @@ -9,12 +9,12 @@ import Yapp from 'constants/yapp'; */ /* 현재 모집중이면 true 아니면 false */ -export const IS_RECRUITING = true; +export const IS_RECRUITING = false; /** Banner */ export const RECRUIT_BANNER = { title: '지금은 모집기간이 아닙니다', - description: `${Yapp.YAPP_GENERATION}기 모집이 완료되었습니다!
다음 기수는 2024년 10월에 예정되어 있습니다.`, + description: `${Yapp.YAPP_GENERATION}기 모집이 완료되었습니다!
다음 기수는 2025년 4월에 예정되어 있습니다.`, buttonName: `${Number(Yapp.YAPP_GENERATION) + 1}기에서 만나요!`, };