Rasmus Dahlkvist
Results
1
comments of
Rasmus Dahlkvist
I managed to get it working for my use case, using this approach. ``` function* sagaWithError() { try{ const response = yield call(someApi) return response }catch(error){ throw Error(error) } }...