Skip to content

Commit

Permalink
Update reward.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry-3551 authored Aug 13, 2024
1 parent 2c925cf commit d32094d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reward.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ const inviteLink = document.getElementById('invite-link');
var reTime = (threshold - (currentDate - lastCheckinDate)) / (1000 * 3600);
var hoursLeftToCheckin = Math.round(reTime);

if (currentDate - lastCheckinDate > threshold) {
if (currentDate - lastCheckinDate < threshold) {

iziToast.error({
timeout: 3000,
Expand Down

0 comments on commit d32094d

Please sign in to comment.