When testing this out with redux dev tools, I found that the jump to action feature did not end up triggering a call to setState. Changing the store's implementation to add the debugging immediately after Program.map
|
|> Program.map mapInit id id mapSetState id mapTermination |
made it work. Perhaps createStore can take an optional function to map the program after the store's config has been applied.
When testing this out with redux dev tools, I found that the jump to action feature did not end up triggering a call to setState. Changing the store's implementation to add the debugging immediately after
Program.mapelmish-store/src/ElmishStore/ElmishStore.fs
Line 65 in 20785ce