Ben Durrant

Results 23 issues of Ben Durrant

Currently, any validator will use the type `T | null | undefined`, even if `isRequired` is used. (as covered in #51) The way I encountered this issue was using the...

Currently the lock button is disabled if the app doesn't think it's talking to a Redux store - which is decided here: https://github.com/reduxjs/redux-devtools/blob/f019024b21e119f6e123bd1f9e2d815d295dfde6/packages/redux-devtools-app/src/reducers/instances.ts#L280 There doesn't seem to be a reason...

fixes https://github.com/zalmoxisus/redux-devtools-extension/issues/618

# Bug report ## Packages affected - [x] sandpack-client - [x] sandpack-react ## Description of the problem Custom asymmetric matchers break in Sandpack, because they're not being called with the...

bug
triage

The recipe in https://github.com/reduxjs/redux-toolkit/discussions/3161 would be good to have documented, and it currently relies on internal types which would need to be exported for it.

docs
rtk-query

see https://github.com/reduxjs/redux-thunk/pull/372/ - this updates the RTK side of things to match.

```ts const loaderSlice = createSlice({ name: "loader", initialState: {} as Partial, creators: { loader: loaderCreator }, reducers: (create) => ({ addLoader: create.loader({}), }), }); ```

currently, if any reducers throw an error when responding to the pending action (for example, if you had a typo) the error would get swallowed into a rejected action this...