Mark Erikson
Mark Erikson
@phryneas , anything we want to consider doing here?
Following up on this - @AleksandrukTad , can you redo this example by putting the code into our `/examples` folder (either as a standalone example, or a modification to the...
Hiya. I'm looking at this, and it seems like it makes some decidedly breaking changes to the types: it looks like we _have_ to pass `, Id` everywhere (including existing...
Yeah, my first take is that it's absolutely safe to use `async` code in browsers (especially given that we just shipped a major release here).
Do you actually have the store configured to use the thunk middleware? It would really help to see a CodeSandbox or a repo that shows this problem happening.
@mendesbarreto unfortunately I don't know what the `ThunkAction` variable looks like in this example, or how the middleware was set up, or what TS version you're using, or how TS...
I'll repeat my usual refrain :) REPROS! WE NEED REPROS! We really need actual projects that _show_ the error happening so I can investigate.
Huh, good eye! I suppose I accidentally "fixed" this while doing some cleanup on the types :)
Heh, thanks :) So backing up, it sounds like there's two different "issues" going on here: - `ThunkAction` not dispatching correctly, which we think is due to a change in...
In _theory_, our advice of `type AppDispatch = typeof store.dispatch` ought to work even with vanilla `createStore` + `applyMiddleware`, but it's been so long since I've tried it that I'm...