React query TypeError: Cannot read property 'queries' of undefined

bebrain·2023년 1월 24일
0

리액트 쿼리 강의를 듣던 중 최신버전인 @tanstack으로 설치하고 진행했는데 error query fn이 떴다

//최신버전

$ npm i @tanstack/react-query
# or
$ pnpm add @tanstack/react-query
# or
$ yarn add @tanstack/react-query

버전 문제인 것 같아 @tanstack으로 설치한 query, devtools 패키지 모두 제거하고 이전 버전인 react-query로 진행 후 보게 된 에러메세지. (이전 버전은 @tanstack/을 지운 나머지 명령어)


해결

import 부분에서 from 뒤를 살짝 수정해주면 된다.

from "react-query-devtools" X
from "react-query/devtools" ○



참조 : https://backbencher.dev/react-query-cannot-read-property-query-undefined

0개의 댓글