Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
0 votes
2 answers
812 views

Return Promise response from Async Thunk

I have a an Axios promise being called from an asyncThunk. I am using the redux toolkit to capture the responses. However, I do not know of a way to return the actual response of the promise call to ...
usama rashad's user avatar
0 votes
1 answer
455 views

Problem with redux-toolkit (createAsyncThunk) in react native expo app

My problem is on redux-toolkit on a react-native application with Expo. To put you in the context I am quite a beginner. Here is my code : export const fetchStationsInformations = createAsyncThunk( &...
Paulin.f's user avatar
-1 votes
1 answer
419 views

can you clarify the use of thunks in redux toolkit? a few specific questions [closed]

Looks like thunk and saga are 2 types of middleware to allow side effects and asyncronous actions in Redux Toolkit. Based on some basic googling, looks like thunk and saga basically serve the same ...
user10307666's user avatar
1 vote
1 answer
2k views

Getting some kind of error in react redux with typescript while trying to dispatch a thunk action in a component

So hi guys, this is my first project where I try to use react-typescript with redux-toolkit and am getting an error: Argument of type 'AppThunk' is not assignable to parameter of type 'AnyAction'. ...
reClicked's user avatar
5 votes
2 answers
12k views

How to get updated state from Redux store using redux-toolkit after component has already rendered?

The functionality I am looking for is that of an e-commerce website. A click on the add-to-cart button adds product to cart. I am able to successfully achieve that by dispatching an action. Post that ...
Soumik Majumdar's user avatar
0 votes
1 answer
931 views

Improper type signature for `dispatch` method despite using "app dispatch" hook

Introduction I'm using Redux Toolkit to add Redux support to a React application served by a Django app. We're using Typescript, and so we're following the Typescript Quick Start from the Redux ...
Sam Weaver's user avatar
  • 1,079
0 votes
1 answer
928 views

Redux toolkit thunk disappears after getDefaultMiddlware config

My store looks like this: export default configureStore({ reducer: { sequencer: sequencerReducer, editMode: editModeReducer, tone: toneReducer, app: appReducer, }, middleware: (...
Nick Carbone's user avatar
0 votes
0 answers
171 views

How to use redux toolkit + redux thunks to create multiple async actions? [duplicate]

Here is the example from the documentation. I'm looking to implement a updateUser action with redux thunk, but I want for it to remain under the same slice as users for example. How can this be ...
Jacob Kelley's user avatar