React-Redux-Thunk: actions does not return dispatch
问题 I am using React Native with Redux-thunk middleware. My problem is dispatch function does not return the object and does not even console. Here is my actions file: function movieSelc(movie) { return { type: types.MOVIE_SELECT, selectedMovie: movie }; } export function selectMovie(m) { console.log("this console works!") return (dispatch) => { console.log("this console never works") dispatch(movieSelc(m)); }; } This is the component(i am not including here const styles to make it a bit shorter)