Dispatch two same action together

Viewed 19

I am using react - useDispatch.

I have an action which will pass a commonValue,

 dispatch(function(commonValue)) 

however, I need to use the same action for two different commonValue in the same component, if I do dispatch I only get one result. I am using redux-saga, but I dont want to create another actionAPI call, is there any way I can resolved the issue? so I have two results please.

0 Answers
Related