TIL 38. A non-serializable value was detected in an action… 에러

isk·2022년 12월 23일
0

TIL

목록 보기
36/122
post-custom-banner

에러

A non-serializable value was detected in an action, in the path: register. Value: ƒ register(key) {
pStore.dispatch({
type: constants__WEBPACK_IMPORTED_MODULE_0
.REGISTER,
key: key
});
}
Take a look at the logic that dispatched this action: Object

사이드 프로젝트를 하던 중, 위와 같은 에러가 생겼다.
Redux Toolkit과 persist를 같이 사용할 때 생기는 에러 같다.

위쪽의 import thunk from ‘redux-thunk’와 아래쪽의 middleware: [thunk]가 없어서 나는 오류였다.

해당 코드의 주석을 해제하는 것으로 해결됐다.

post-custom-banner

0개의 댓글