redux-toolkit icon indicating copy to clipboard operation
redux-toolkit copied to clipboard

The official, opinionated, batteries-included toolset for efficient Redux development

Results 422 redux-toolkit issues
Sort by recently updated
recently updated
newest added

See Lenz's comments here: https://github.com/reduxjs/redux-toolkit/pull/2759#discussion_r990775186

First step: see why we're getting odd versions of MSW and type-fest

Hi @phryneas , I ran into this bug today by chance while monitoring a failing API request. I'm using the `retry` function combined with baseQuery provided by RTK Query. The...

bug
enhancement
rtk-query

This is hard to explain so I will do it in parts. First the steps and what is expected and also what would be useful all around Steps for use...

Please add support for OpenAPI readonly model properties to RTK Query code generation. I'll try to explain it relatively shortly: For example, I have a simple API with the User...

TypeScript examples had .js extension

Hi everyone. I have multiple apps which need to use the same API of RTK-Query, but each one of them has to pass a different `baseQuery` function because of different...

Related to #1364 change typings from ```javascript { data: T; } | { error: FetchBaseQueryError | SerializedError; } ``` to ```javascript { data: T; error?: never; } | { data?:...

enhancement
rtk-query
typescript

Hi, master, i want to wrap the builder,but encountered the TS error,any thing should i do to fix this? Here is the source code ```tsx import { OmitFromUnion } from...

Hello, is there a built in way in RTK-Query to disable polling when the window looses focus?