Skip to content

Commit

Permalink
Remove unused parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
GODrums committed Sep 20, 2024
1 parent 2504b75 commit 3ab086f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/app/home/home.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class HomeComponent {

query = injectQuery(() => ({
queryKey: ['leaderboard'],
queryFn: async () => lastValueFrom(this.leaderboardService.getLeaderboard(this.before, this.after, undefined, undefined, undefined)),
queryFn: async () => lastValueFrom(this.leaderboardService.getLeaderboard(this.before, this.after)),
gcTime: Infinity
}));
}

0 comments on commit 3ab086f

Please sign in to comment.