diff --git a/frontend/src/app/pages/vote/vote.component.html b/frontend/src/app/pages/vote/vote.component.html index f8b53c1..a66b59a 100644 --- a/frontend/src/app/pages/vote/vote.component.html +++ b/frontend/src/app/pages/vote/vote.component.html @@ -32,7 +32,7 @@

Disclaimers & Info

-

You can only store 7 daily crate keys, 1 weekly crate key and 2 quest crate +

You can only store 7 daily crate keys, 2 weekly crate key and 2 quest crate keys.


Voting within 30 minutes of midnight UTC can cause your votes to glitch. Keys lost due to voting too close to midnight UTC will not be reimbursed. @@ -41,6 +41,10 @@

+ @if (voteStats) { +

You have voted {{ voteStats.voteStats.total }} times and {{ voteStats.voteStats.weekly }} this week. You are + on a {{ voteStats.voteStreak.dailyStreak }} vote streak!

+ }
@for (voteSite of Object.keys(voteSites); track voteSite) {
diff --git a/frontend/src/app/pages/vote/vote.component.ts b/frontend/src/app/pages/vote/vote.component.ts index 4e99beb..4452f8d 100644 --- a/frontend/src/app/pages/vote/vote.component.ts +++ b/frontend/src/app/pages/vote/vote.component.ts @@ -48,7 +48,7 @@ export class VoteComponent implements OnInit, OnDestroy { } ngOnInit(): void { - this.refreshSubscription = interval(300000).subscribe(() => { + this.refreshSubscription = interval(60000).subscribe(() => { this.loadVoteStats(); }); }