Skip to content

Commit

Permalink
feat(replays): increase limit for replays on level page
Browse files Browse the repository at this point in the history
  • Loading branch information
sunehs committed Jul 27, 2024
1 parent fb3a9c9 commit 36a3c09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/replay.js
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@ const getReplaysByLevelIndex = async LevelIndex => {

return [...replays, ...combined]
.sort((a, b) => a.ReplayTime - b.ReplayTime)
.slice(0, 100);
.slice(0, 1000);
};

const shareReplay = async data => {
Expand Down

0 comments on commit 36a3c09

Please sign in to comment.