This repository was archived by the owner on Oct 26, 2018. It is now read-only.
This repository was archived by the owner on Oct 26, 2018. It is now read-only.
First mutation #193
Closed
Description
I'm using the latest version of this repository.
The @@router/UPDATE_LOCATION
action do not reach the end of my middleware chain during the first mutation of the state.
I'm wondering if this is intentional, or an issue with this project (it's working with redux-router
).
Here is my middleware chain in case you ask:
import promiseMiddleware from 'redux-promise';
import thunk from 'redux-thunk';
...
middleware = applyMiddleware(
promiseMiddleware,
thunk,
reduxRouterMiddleware,
analyticsMiddleware
);
The issue for me is that, I want to send every @@router/UPDATE_LOCATION
event to google analytics but the first page is missing.