Version 1.6.200

This commit is contained in:
ISA
2025-04-02 08:14:17 +02:00
parent 76f4b92fb5
commit 3aac69954a
6 changed files with 14 additions and 10 deletions

View File

@@ -9,7 +9,7 @@ export const fetchAllTDRChartData = createAsyncThunk(
"tdrChart/fetchAllTDRChartData",
async (_, { getState, rejectWithValue }) => {
const state = getState() as RootState;
const currentData = state.tdrChart.data;
const currentData = state.tdrChartSlice.data;
const newData = await fetchAllTDRChartDataFromServer(); // ✅ Service aufrufen