Mark Erikson

Results 1264 comments of Mark Erikson

This is probably a problem with the underlying https://github.com/oazapfts/oazapfts library - could you file an issue over there with a repro? Thanks!

It's low on the priority list atm - all of us maintainers have been busy with other things the last few weeks. We'll try to take a look when we...

The PR seems to break things, and I don't have the time to investigate why. It does seem to be related to the `value` field that's created in the test...

Until the in-flight request returns, we _do_ have valid data from the _last completed_ request, so the _current_ status is still "successful".

Storing the value in a Redux slice is the right approach. Tracking it at the component level won't give you a correct or consistent number of all possible errors that...

At a minimum, you could genericize the matcher logic: ```ts const isMyApiError = (action) => { return action.type.startsWith("myapi/") && isRejected(action); } ```

@rusnick31 not immediately likely. This is the first time anyone's ever asked for something like an error count that I know of. Individual feature requests are always a possibility, but...

Out in https://github.com/reduxjs/redux-toolkit/releases/tag/v2.4.0 !

This looks like a bit of an "X/Y problem" kind of request. Lazy queries aren't meant for looping and triggering many requests in a row. What's your use case for...

While it's not a "lint rule" thing per se, there was a request here for some form of static analysis that would make it easier to jump from an action...