Skip to content

Commit

Permalink
Merge pull request #99 from Boost-Coder/feature/fixPagingNum-#01
Browse files Browse the repository at this point in the history
[#1] pagination 갯수 수정
  • Loading branch information
koomin1227 authored May 30, 2024
2 parents 068353c + c00e81e commit f3efcde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/stat.repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class StatRepository extends Repository<any> {
.where(this.createCursorOption(options))
.orderBy('score', 'DESC')
.addOrderBy('userId')
.limit(3);
.limit(15);
const result = await (<Promise<[RankListDto]>>(
queryBuilder.getRawMany()
));
Expand Down

0 comments on commit f3efcde

Please sign in to comment.