Mark Erikson

Results 1264 comments of Mark Erikson

Well, this is where the increasing number of options and behavioral interactions causes increasing complexity :) The selector code has been able to make this optimization based on a valid...

@SYoder1 I won't have the mental space available to look at that until after I get the infinite query feature shipped. (Fortunately, that's getting fairly close!)

Sorry, it's on my list of stuff to look at, but I haven't had much time to work on RTK lately. Will try to get to it in the near...

Should be live in https://github.com/reduxjs/redux-toolkit/releases/tag/%40rtk-query%2Fcodegen-openapi%402.0.0-alpha.0 ! Please try it out and let us know if it works.

Should be live in https://github.com/reduxjs/redux-toolkit/releases/tag/%40rtk-query%2Fcodegen-openapi%402.0.0-alpha.0 ! Please try it out and let us know if it works.

Could you record and share a Replay ( https://replay.io/record-bugs ) that shows this happening?

@Irfanwani unfortunately screen recordings really don't help - we need to see the code behavior to understand what's going on. It would be most helpful if you could record a...

Yes, a selector that has `(state) => state` is effectively broken and will _never_ memoize correctly. Please don't do that :( (In fact, Reselect _ought_ to be warning you about...

Query selectors _are_ created internally using `createSelector`, ~~but strictly speaking don't benefit from being memoized (it's ultimately a straight lookup as you've got there)~~ I was reminded they do derive...