Axios 연결했는데 이런 에러가 자꾸 나서
몇시간 혼자 구글링하고 난리쳤다.
하지만 에러는 바로 내 실수에서 비롯된 것이었다.
import jsonPlaceholder from "../apis/jsonPlaceholder";
export const fetchPost = () => async (dispatch) => {
const response = await jsonPlaceholder.get("/posts");
dispatch({ type: "FETCH_POST", payload: response });
};
바로 이 코드에서 posts를 post로 친 것이었다.
너무 허탈했다...