Fix lint error

master^2^2
RKBoss6 2025-08-12 16:14:42 -04:00 committed by GitHub
parent 88bb5e3683
commit 1eac455a29
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
var daysLeft = hrsLeft / 24;
daysLeft = Math.round(daysLeft);
else if(daysLeft >= 1) {
if(daysLeft >= 1) {
return daysLeft+"d";
}