Mark Erikson
Mark Erikson
Okay, updated the PR: - Rebased vs latest `main` and removed the stacking from the earlier PRs - Spent some time thinking through the relative behavior of `concat` vs `filter`....
Does this _only_ occur if you're using a persisted reducer?
Okay, changes here make sense based on the descriptions, and I think Arya's got it cleaned up to where this is basically "just" the `interface -> type` changes (rather than...
Some related comments from a former Slack engineer I've talked to (stashing here because I have nowhere better to put this): > wanted to share some of the most promising...
Dug down into the Lodash types. Seems like we could maybe just inline this? ```ts interface CurriedFunction1 { (): CurriedFunction1; (t1: T1): R; } ```
I don't understand the context of this issue. Can you describe what you're trying to do?
I can imagine that passing `selector(currState, prevState)` might run into assumptions about selector arguments, but would have to come up with concrete examples. The main bit of documentation we've had...
@einarq Not sure yet. My assumption is this would end up being a new major version of React-Redux (v10), similar to how we shipped v8 with the switch from our...
And yeah, based on that discussion, I've decided to officially mark `connect` as deprecated very soon: - https://github.com/reduxjs/react-redux/issues/2264
@thejustinwalsh fyi I have a local AI-written prototype of trying to update `useStore` with handling for passing `(current, previous)` to selectors, as a step towards adding equality check functionality. Supposedly...