Trying to implement redirect after login success.
history.pushState(null,null, '/profile') doesn't work. Just change URL and all.
browserHistory.push('/profile'); Same
How do i can create redirect after login?
case types.LOG_IN_SUCCESS:
history.pushState(null,null, '/profile');
Thanks