Skip to content

Commit

Permalink
fix: limit highscores (#352)
Browse files Browse the repository at this point in the history
  • Loading branch information
ForsbergPhilip authored Nov 15, 2024
1 parent 80af67a commit 57f277e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/services/highscores.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export class HighscoresService {
}

public async allBySeasonIdPublic(seasonId: string) {
return this.allBySeasonId(seasonId);
return this.allBySeasonId(seasonId, 10);
}

public async create(data: INewHighscore) {
Expand Down

0 comments on commit 57f277e

Please sign in to comment.