Skip to content

Commit 1eac455

Browse files
authored
Fix lint error
1 parent 88bb5e3 commit 1eac455

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/smartbatt/clkinfo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
var daysLeft = hrsLeft / 24;
1010
daysLeft = Math.round(daysLeft);
11-
else if(daysLeft >= 1) {
11+
if(daysLeft >= 1) {
1212
return daysLeft+"d";
1313
}
1414

0 commit comments

Comments
 (0)