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

This is a WIP towards building a `useQueries` hook , per https://github.com/reduxjs/redux-toolkit/discussions/2398 . So far I have a slightly wonky prototype `useQuerySubscriptions` hook. It doesn't break any existing tests which...

# Description In this PR we remove abort controller https://github.com/reduxjs/redux-toolkit/issues/2448 Where should I add in the docs that ? - For people that are using redux with a node.js server...

Is there any way to generate enum instead of type for enum values? For example, in my specification there is enum type ```json "Condition": { "type": "string", "enum": [ "eq",...

enhancement
RTKQ-Codegen

Hi, In the back-end of my project each route has a summary with a more easy to remember name than the routes. For example, the route `/organization/:organizationId/user/:userId` would result in...

This pull request fixes #1960 while attempting to not introduce any breaking changes. In addition to each existing `*.esm.js` bundle, an identical `*.esm.mjs` bundle is created. This makes sure that...

Hi all! We use RTK Query to query our API (using createAPI) I'd love to persist record of what the API state has cached in cookies, so that in SSR...

I would like the date fields coming from the server to be stored as dates in redux. Better yet I'd like them to be types of our date library (dayjs)....

Sorry if this is a silly question, but is it possible to pause polling on a query if the window loses focus. I currently have a situation where i need...

For all of my requests Content-Type is application/json even if I change it manually with prepareHeaders: (headers) => {headers.set("Content-Type", "multipart/forn-data"); return headers;}. When I try to send the data that...

Currently there a polyfill of AbortController in createAsyncThunk but not in listeners middleware. The goal of this issue is to remove the polyfill for the v2 Related to: https://github.com/reduxjs/redux-toolkit/pull/2446