Skip to content

Commit

Permalink
Chore: removed console log
Browse files Browse the repository at this point in the history
  • Loading branch information
Akalanka47000 committed Oct 6, 2024
1 parent 9b20efa commit b686df8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/store/api/leaderboard/transformer.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,8 @@ const transformLeaderboardData = (response, _, arg) => {
}

const totalPages = Math.ceil(response.data.length / 10);
response.data = response.data.slice((page - 1) * 10, page * 10);

console.log(response.data, 88);
response.data = response.data.slice((page - 1) * 10, page * 10);

return {
data: {
Expand Down

0 comments on commit b686df8

Please sign in to comment.