Skip to content

Commit ef36980

Browse files
committed
chore: show 50 players in leaderboard
1 parent 2552b19 commit ef36980

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/supabase/queries.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export const getLeaderboard = async () => {
6262
.select()
6363
.order("connections", { ascending: false })
6464
.order("last_connected", { ascending: true })
65-
.limit(10);
65+
.limit(50);
6666
return { data, error };
6767
};
6868

0 commit comments

Comments
 (0)