beesReducer is not serializable, requiring that modern versions of Redux disable serializability checks to use it. For example:
const store = configureStore({
reducer: {
bees: beesReducer,
},
middleware: (getDefaultMiddleware) =>
getDefaultMiddleware({
serializableCheck: false,
}).concat(beesMiddleware()),
});
If possible, we should make beesReducer serializable so that this is not necessary.
beesReduceris not serializable, requiring that modern versions of Redux disable serializability checks to use it. For example:If possible, we should make
beesReducerserializable so that this is not necessary.