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

@@ -7,7 +7,7 @@ import { fetchAllTDMDataFromServer } from "../../services/fetchAllTDMData";
export const fetchAllTDMData = createAsyncThunk(
"tdmChart/fetchAllTDMData",
async (_, { getState, rejectWithValue }) => {
const currentData = (getState() as RootState).tdmChart.data;
const currentData = (getState() as RootState).tdmChartSlice.data;
const newData = await fetchAllTDMDataFromServer();
if (newData.every((entry) => !entry)) {