Skip to content

Commit

Permalink
chore: change beginner applicant status
Browse files Browse the repository at this point in the history
비기너 지원 가능으로 변경
  • Loading branch information
Aquariurn committed Nov 22, 2023
1 parent 06e7125 commit be2c1c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/web/src/contents/recruitment/beginner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const beginnerRecruitInfo: AnnouncementData = {
name: 'Beginner',
skill: 'none',
stack: 'none',
status: 'CLOSED',
status: 'OPEN',
people:
'코딩에 대한 남다른 애정을 가지신 분\n' +
'1년이상 활동이 가능하신 분\n' +
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/store/recruitmentStatusAtom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const RecruitmentState: Record<PositionType, boolean> = {
ios: true,
designBeginner: true,
ml: true,
beginner: false,
beginner: true,
};

export const recruitmentAtom = atom<typeof RecruitmentState>(RecruitmentState);
Expand Down

0 comments on commit be2c1c3

Please sign in to comment.