Skip to content

Commit

Permalink
⚡️: fix 초기레벨 LEVEL_ONE으로 복구
Browse files Browse the repository at this point in the history
  • Loading branch information
PgmJun committed Jul 24, 2023
1 parent 2db33a2 commit 6a509b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class Challenge extends BaseEntity {
public static Challenge newInstance(Member member) {
return Challenge.builder()
.member(member)
.level(ChallengeLevelType.LEVEL_FIVE) //TODO: 데모데이 종료 후, LEVEL_ONE으로 변경
.level(ChallengeLevelType.LEVEL_ONE)
.build();
}

Expand Down

0 comments on commit 6a509b3

Please sign in to comment.