DEV Community

Discussion on: React Redux Dispatch Issue

Collapse
 
_bkeren profile image
'' • Edited

You can bind the changed value affected by the first dispatch to the component via useSelector. At the same component, you can use useEffect to listen changes for the first dispatched element all call second dispatch.

For advanced usage, look at Redux Saga.