diff --git a/gui/src/components/commons/icon/BatteryIcon.tsx b/gui/src/components/commons/icon/BatteryIcon.tsx
index 4d173142a..150034d5c 100644
--- a/gui/src/components/commons/icon/BatteryIcon.tsx
+++ b/gui/src/components/commons/icon/BatteryIcon.tsx
@@ -62,13 +62,13 @@ export function BatteryIcon({
2 ? 0 : value * 18} height="9" />
- {charging && value <= 1 && (
+ {charging && (value <= 1 || value > 2) && (
)}
- {charging && value > 1 && value < 2 && (
+ {charging && value > 1 && value <= 2 && (