From 1eac455a29e5acd4c71f2a8e8d7165dd97a69a76 Mon Sep 17 00:00:00 2001 From: RKBoss6 Date: Tue, 12 Aug 2025 16:14:42 -0400 Subject: [PATCH] Fix lint error --- apps/smartbatt/clkinfo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/smartbatt/clkinfo.js b/apps/smartbatt/clkinfo.js index ae96756ba..05f52cf64 100644 --- a/apps/smartbatt/clkinfo.js +++ b/apps/smartbatt/clkinfo.js @@ -8,7 +8,7 @@ var daysLeft = hrsLeft / 24; daysLeft = Math.round(daysLeft); - else if(daysLeft >= 1) { + if(daysLeft >= 1) { return daysLeft+"d"; }