Skip to content

beesReducer is not serializable #4

Description

@openjck

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions