Mark Erikson
Mark Erikson
Huh, interesting. We do have a bunch of custom type-level code in `configureStore` to ensure that `dispatch` ends up with the correct types based on the supplied middleware. I would...
@sevgeek : can you show your actual store setup code, preferably as a CodeSandbox or Github repo?
@sevgeek : I think the issue here is the use of `.prepend([SomeMiddleware])`, and more specifically, the use of an array as the argument. If I uncomment that API slice reducer,...
Can you share a fully running sandbox or repo that shows this behavior, with a meaningful dataset? Also, note that Immer _does_ recursively freeze data by default. Can't tell if...
Heh, I'm afraid this one is mostly going over my head :) What's the specific concern here, and what's the actual proposed code change?
Looking back at this. What's actually "breaking" here? Seems like `runTask` is internal? If you're referring to the tweak in timing behavior, I don't see that as being actually "breaking"...
Seems worth tweaking, although I don't have time to look into this myself atm.
It'd still be nice to get this tweaked, but it's low priority. Dropping it out of the 1.9 milestone. If anyone wants to tackle it, please let us know!
Hah, look, I said basically the same thing a year ago :) I'd rather not go any farther than a counter. Per my comment above, I assume that most folks...
For reference, here's what @rahsheen put together in his RN example project: https://github.com/rahsheen/example-redux-toolkit-react-native-app/blob/2e578b88a1fd373f7db165dcda97279aa4edcffc/src/features/counter/counterSlice.ts ```js // The function below is called a thunk and allows us to perform async logic. It...