masters test

This commit is contained in:
Primakov Alexandr Alexandrovich
2025-02-20 13:55:05 +03:00
committed by ilnaz
parent 290bb3f0a3
commit 9121fcaa43
2 changed files with 39 additions and 2 deletions

View File

@@ -7,7 +7,9 @@ export const store = configureStore({
[api.reducerPath]: api.reducer,
},
middleware: (getDefaultMiddleware) =>
getDefaultMiddleware().concat(api.middleware),
getDefaultMiddleware({
serializableCheck: false
}).concat(api.middleware),
});
export type RootState = ReturnType<typeof store.getState>;