diff --git a/packages/modules/web_themes/koala/source/src/stores/mqtt-store.ts b/packages/modules/web_themes/koala/source/src/stores/mqtt-store.ts index c123b96f8b..9b5a356c34 100644 --- a/packages/modules/web_themes/koala/source/src/stores/mqtt-store.ts +++ b/packages/modules/web_themes/koala/source/src/stores/mqtt-store.ts @@ -1737,7 +1737,7 @@ export const useMqttStore = defineStore('mqtt', () => { return computed(() => { const vehicleId = chargePointConnectedVehicleInfo(chargePointId).value?.id; - if (!vehicleId) return undefined; + if (vehicleId === undefined) return undefined; const socConfig = getValue.value( `openWB/vehicle/${vehicleId}/soc_module/config`, ) as { type: string } | null;