feat(service): CPL-Request verwendet DIA0, DIA1 oder DIA2 je nach Zeitraum für analoge Eingänge

This commit is contained in:
ISA
2025-07-21 13:46:13 +02:00
parent fb68d59da4
commit 30d396896d
8 changed files with 22 additions and 13 deletions

View File

@@ -12,7 +12,7 @@ export const getAnalogInputsThunk = createAsyncThunk(
if (typeof window === "undefined") return; // Server-Side Execution blockieren
try {
const data = await fetchAnalogInputsService();
console.log("📡 Analoge Eingänge geladen:", data);
//console.log("📡 Analoge Eingänge geladen:", data);
if (data) {
dispatch(setAnalogInputs(data)); // ✅ Redux mit API-Daten füllen
}