Error: Objects are not valid as a React child (found: object with keys {_U, _V, _W, _X}). If you meant to render a collection of children, use an array instead. 위와 같은 Promise 에러와 함께 useQuery에 대한 결과 값을 저장하면 const { data, loading, networkStatus, error } = await useQuery() 콘솔에는 다음과 같이 networkStatus 가 1, loading 값만 true로 저장되어 나온다. networkStatus 1 loading true error undefined data undefined 원인은 데이터를 ..