diff --git a/api/src/stats/stats.dto.ts b/api/src/stats/stats.dto.ts index bf0c3a3d..42cf18b8 100644 --- a/api/src/stats/stats.dto.ts +++ b/api/src/stats/stats.dto.ts @@ -35,5 +35,5 @@ export class FetchStatsDTO { @IsEnum(TimeRange) timeRange: TimeRange; - @Min(0) @Max(200) limit: number; + @Min(0) @Max(250) limit: number; } diff --git a/client/src/ui/GlobalLeaderboard.tsx b/client/src/ui/GlobalLeaderboard.tsx index fc563707..4032fb1d 100644 --- a/client/src/ui/GlobalLeaderboard.tsx +++ b/client/src/ui/GlobalLeaderboard.tsx @@ -35,7 +35,7 @@ export function GlobalLeaderboard() { api.post(url, { sortBy: type.startsWith('total') ? type.slice(6) : type, timeRange: range, - limit: 200, + limit: 250, }, (data: any) => setData(!data.message ? data : [])); }; const changeType = (type: string) => {