-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Hotfix] 스터디 커리큘럼 12주로 연장, 스터디 신청 기간 자유롭게 선택 가능하도록 수정 (#123)
* fix: 스터디 신청 기간 및 스터디 커리큘럼 변경 * fix: 코드리뷰 반영
- Loading branch information
Showing
4 changed files
with
12 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export const studyCurriculumList = Array.from({ length: 12 }, (_, index) => { | ||
const week = index + 1; | ||
return { text: `${week}주`, value: `${week}` }; | ||
}); |