[9] InvalidNumber: ...

Simune·2024년 6월 16일

React Native Errors

목록 보기
9/9

해결 방법

구글링으로 비슷한 사례를 찾지 못해서 공식 깃헙 이슈가서 찾아왔다..! 역시나 예상한대로 react-native-chart-kit 관련 이슈였다. 개발자마다 다른 에러가 뜨는걸 보니 데이터 에러인 것 같다.

https://github.com/indiespirit/react-native-chart-kit/issues/237

const [chartData, setChartData] = useState([]); // ❌

const [chartData, setChartData] = useState([0, 0, 0, 0, 0, 0]); // ✅
profile
👩🏻‍💻🌱

0개의 댓글