Remove redundant Bangle.isCharging check

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

View File

@ -8,9 +8,6 @@
var daysLeft = hrsLeft / 24;
daysLeft = Math.round(daysLeft);
if (Bangle.isCharging()) {
return batt+"%";
}
else if(daysLeft >= 1) {
return daysLeft+"d";
}