[React Native]Warning Excessive number of pending callbacks: 501

Excessive number of pending callbacks: 501

Console Warning


Map함수를 통해 다수의 <TouchableOpacity />를 랜더하며 발생한 Warning이다.

 

관련 github issues

https://github.com/facebook/react-native/issues/34442

 

PLEASE REPORT: Excessive number of pending callbacks: 501 · Issue #34442 · facebook/react-native

Description Hi, I keep the getting the error seen on the screenshot below. For context, I'm creating an app (IOS) where users can swipe through a number of songs to listen to the audio and comment ...

github.com

해결

<TouchableOpacity /> 컴포넌트 관련 이슈
("NativeAnimatedModule" is referring to the animation on the touchableOpacity components)를 확인하고

<Pressable /> 컴포넌트로 변경 후 Warning을 해결할 수 있었다.