diff --git a/src/views/LeaderboardView.vue b/src/views/LeaderboardView.vue
index ef8c426d075af014d33c3db83e0ff01093ecd367..785fce3f7d8cd55a936b00ba4519674d82f3b7e4 100644
--- a/src/views/LeaderboardView.vue
+++ b/src/views/LeaderboardView.vue
@@ -77,17 +77,17 @@ async function global() {
     let globalPointsYou = await LeaderboardService.getSurrounding({
         type: "TOTAL_POINTS",
         filter: "GLOBAL",
-        entryCount: 1,
+        entryCount: 2,
     });
     let globalStreakYou = await LeaderboardService.getSurrounding({
         type: "TOP_STREAK",
         filter: "GLOBAL",
-        entryCount: 1,
+        entryCount: 2,
     });
     let globalCurrentStreakYou = await LeaderboardService.getSurrounding({
         type: "CURRENT_STREAK",
         filter: "GLOBAL",
-        entryCount: 1,
+        entryCount: 2,
     });
     
     pointsLeaderboardData.value = globalPoints.entries;
@@ -117,17 +117,17 @@ async function friends() {
     let friendsPointsYou = await LeaderboardService.getSurrounding({
         type: "TOTAL_POINTS",
         filter: "FRIENDS",
-        entryCount: 3,
+        entryCount: 2,
     });
     let friendsStreakYou = await LeaderboardService.getSurrounding({
         type: "TOP_STREAK",
         filter: "FRIENDS",
-        entryCount: 3,
+        entryCount: 2,
     });
     let friendsCurrentStreakYou = await LeaderboardService.getSurrounding({
         type: "CURRENT_STREAK",
         filter: "FRIENDS",
-        entryCount: 3,
+        entryCount: 2,
     });