Skip to content

Commit 1bb15af

Browse files
committed
fix: daily leaderboards not showing current rank
1 parent d363cb3 commit 1bb15af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/ts/pages/leaderboards.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ function fillUser(): void {
649649
if (
650650
isAuthenticated() &&
651651
!isDevEnvironment() &&
652-
(DB.getSnapshot()?.typingStats?.timeTyping ?? 0) < 72000
652+
(DB.getSnapshot()?.typingStats?.timeTyping ?? 0) < 7200
653653
) {
654654
$(".page.pageLeaderboards .bigUser").html(
655655
'<div class="warning">Your account must have 2 hours typed to be placed on the leaderboard.</div>'

0 commit comments

Comments
 (0)