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

Use case: - I have an API where I need to place an order with one endpoint and then poll for the order to get the payment status with another...

rtk-query

https://redux-toolkit.js.org/usage/nextjs#per-route-state In my nextjs project I need to reset a value in SPA navigation, this is the suggested solution, but this solution Warning: Cannot update a component (`Page`) while rendering...

Currently, **@rtk-query/codegen-openapi** generates named export hooks for queries and mutations, but it is missing the useQueryState hooks. I would like to propose an enhancement to include the useQueryState hooks in...

rtkq-codegen

Configuration parameter useEnumType is not included in the documentation. This is a friendly reminder to update the documentation. Best regards!

docs
rtkq-codegen

Hello I am using some types from `endpointDefinitions` to define `transformedResponse `return type in my endpoint enhancing, the problem is that after updating `@reduxjs/toolkit` to version 2.0.1 I am not...

bug
rtk-query
typescript

I'm converting a fairly big app to rtk-q. the app is heavily split into "features" and each feature is lazy-loaded, so we're using `injectEndpoints`. Different features are developed by different...

enhancement
rtk-query

Hello. As a newbie to rtk-query, I found the official documentation for `useLazyQuery` a bit confusing while trying to apply it to my project. In the [description](https://redux-toolkit.js.org/rtk-query/api/created-api/hooks#description-4), it says the...

rtk-query

Hi, in my project i use toolkit 2.0.0 and i have type check build during emit declaration files only with `isolatedModules: true` option in tsconfig: ```json { "compilerOptions": { "target":...

`"@reduxjs/toolkit": "^2.0.1",` eror: ``` import { configureStore, Middleware } from '@reduxjs/toolkit'; import { rootReducer } from './rootReducer' const middlewares: Middleware[] = []; // @link: https://redux.js.org/recipes/configuring-your-store#simplifying-setup-with-redux-toolkit /*export const configureStore = (preloadedState...