Skip to content

Commit

Permalink
feat: 12기 서류 시작으로 인한 상태 변경 및 지원서 링크 수정 (#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
saseungmin authored Nov 15, 2024
1 parent 0426db8 commit c56b599
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion apps/web/src/components/pages/HomePage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function HomePage({
<strong>IT비영리단체</strong>
입니다.
</div>
{eventStatus.status !== 'INACTIVE' && (
{['ONGOING', 'HOT'].includes(eventStatus.status) && (
<div className={styles.counter}>
오늘까지&nbsp;
<Counter count={currentApplicantCount} />
Expand Down
8 changes: 4 additions & 4 deletions apps/web/src/lib/assets/data/event_status.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"status": "INACTIVE",
"applicationStartDateTime": "2024/06/10 00:00:00",
"applicationEndDateTime": "2024/06/19 23:59:59",
"applicantAcceptanceDateTime": "2024/06/28 00:00:00"
"status": "UPCOMING",
"applicationStartDateTime": "2024/11/18 00:00:00",
"applicationEndDateTime": "2024/12/15 23:59:59",
"applicantAcceptanceDateTime": "2024/12/25 00:00:00"
}
6 changes: 3 additions & 3 deletions apps/web/src/lib/constants/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
export const CURRENT_FLAG = 11;
export const CURRENT_FLAG = 12;

export const NEXT_FLAG = CURRENT_FLAG + 1;

export const DEVELOPER_APPLICATION_LINK = 'https://forms.gle/mmwaEmyksJjf12557';
export const DEVELOPER_APPLICATION_LINK = 'https://forms.gle/qgXeZ1KgeriC54g67';

export const DESIGNER_APPLICATION_LINK = 'https://forms.gle/ZCUPBJiuctpibpdy9';
export const DESIGNER_APPLICATION_LINK = 'https://forms.gle/W4sMemrifo7yJNBV7';

export const NEXT_COHORT_NOTIFICATION_URL = 'https://forms.gle/nA3MLWbUyAoikWw16';

0 comments on commit c56b599

Please sign in to comment.