Skip to content

Commit

Permalink
Feat(#522): 인기 강의 5개 노출
Browse files Browse the repository at this point in the history
  • Loading branch information
j-zzi committed Jun 8, 2024
1 parent a8528d7 commit b3b524d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lecture/services/popular-lecture.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export class PopularLectureService {

const sortedPopularScores = this.sortPopularScores(popularScores);

const topFivePopularScores = sortedPopularScores.slice(0, 6);
const topFivePopularScores = sortedPopularScores.slice(0, 5);

const popularLectures = [];

Expand Down

0 comments on commit b3b524d

Please sign in to comment.