Warning: Please report - Excessive number of pending callbacks: 501.
Please provide all the information requested. Issues that do not follow this format are likely to stall.
Description
Excessive number of pending callbacks: 501. Some pending callbacks that might have leaked by never being called from native code: {"18841":{},"18842":{},"18843":{},"18844":{},"18845":{},"18846":{},"18847":{},"18848":{},"18849":{},"18850":{},"18851":{},"18852":{},"18853":{},"18854":{},"18855":{},"18856":{},"18857":{},"18858":{},"18859":{},"18860":{},"18861":{},"18862":{},"18863":{},"18864":{},"18865":{},"18866":{},"18867":{},"18868":{},"18869":{},"18870":{},"18871":{},"18872":{},"18873":{},"18874":{},"18875":{},"18876":{},"18877":{},"18878":{},"18879":{},"18880":{},"18881":{},"18882":{},"18883":{},"18884":{},"18885":{},"18886":{},"18887":{},"18888":{},"18889":{},"18890":{},"...(truncated keys)...":451}
I get this error randomly somewhat frequently now while using my react native application. It happens randomly and I cannot debug to find the source of the issue. Reporting as it says to report.
React Native version:
react native version number 0.63.4
Steps To Reproduce
Provide a detailed list of steps that reproduce the issue.
- start react native application via npm run android (react native run-android)
- Redirect on a few pages and this error pops up saying 501 callbacks never called or pending which I don't think my entire app has 500 callbacks lol I mean I use setState callbacks but nothing outside of that...

https://github.com/facebook/react-native/issues/31988 looks similar; do you find clues there? Maybe the two issues can be consolidated.
#31988 looks similar; do you find clues there? Maybe the two issues can be consolidated.
you are just browsering us to another issue there are not solutions
Encountered this issue when my node_modules was all messed up, possibly a duplicate of react-native in the tree (this is a monorepo). Making sure stuff was only installed once fixed things.
Hi, any update on this issue ? how to identify the root cause of this issue ?
I was able to resolve an Excessive number of pending callbacks error in my application by removing a state object from a setTimeout loop that I needed to use.
Hey , I faced the same issue in my code . The issue with mine is , I used CallBackFunction inside loop .
This is warning is given by the MessageQueue.js file inside node_modules (Path to the file :\node_modules\react-native\Libraries\BatchedBridge\MessageQueue.js)
Inside that one , you can find this line
processCallbacks(
moduleID: number,
methodID: number,
params: mixed[],
onFail: ?(...mixed[]) => void,
onSucc: ?(...mixed[]) => void,
): void {
if (onFail || onSucc) {
if (DEV) {
this._debugInfo[this._callID] = [moduleID, methodID];
if (this._callID > DEBUG_INFO_LIMIT) {
delete this._debugInfo[this._callID - DEBUG_INFO_LIMIT];
}
if (this._successCallbacks.size > 500) {
const info: {[number]: {method: string, module: string}} = {};
this.successCallbacks.forEach((, callID) => {
const debug = this._debugInfo[callID];
const module = debug && this._remoteModuleTable[debug[0]];
const method = debug && this._remoteMethodTable[debug[0]][debug[1]];
info[callID] = {module, method};
});
warnOnce(
'excessive-number-of-pending-callbacks',
Please report: Excessive number of pending callbacks: ${ this._successCallbacks.size }. Some pending callbacks that might have leaked by never being called from native code: ${stringifySafe( info, )},
);
}
}
This is the code where it is providing warning ,
processCallbacks(
moduleID: number,
methodID: number,
params: mixed[],
onFail: ?(...mixed[]) => void,
onSucc: ?(...mixed[]) => void,
): void {
if (onFail || onSucc) {
if (DEV) {
this._debugInfo[this._callID] = [moduleID, methodID];
console.log("METHOD ID",methodID) //This line is added by me
console.log("MODULE ID",moduleID) //This line is added by me
console.log("SUCCESS CALLBACKS",this._successCallbacks) //This line is added by me
console.log("SIZE OF SUCCESS CALLBACKS",this._successCallbacks.size) //This line is added by me
if (this._callID > DEBUG_INFO_LIMIT) {
delete this._debugInfo[this._callID - DEBUG_INFO_LIMIT];
}
if (this._successCallbacks.size > 500) {
const info: {[number]: {method: string, module: string}} = {};
this.successCallbacks.forEach((, callID) => {
const debug = this._debugInfo[callID];
const module = debug && this._remoteModuleTable[debug[0]];
const method = debug && this._remoteMethodTable[debug[0]][debug[1]];
info[callID] = {module, method};
});
warnOnce(
'excessive-number-of-pending-callbacks',
Please report: Excessive number of pending callbacks: ${ this._successCallbacks.size }. Some pending callbacks that might have leaked by never being called from native code: ${stringifySafe( info, )},
);
}
}
Here I just add console.log to this code , i saw the endless consoles , because of my mistake in code .Then I've changed that . So do the same in yours also so you can find more detail or idea about this . Thank you , Have a great day .
WARN Please report: Excessive number of pending callbacks: 501. Some pending callbacks that might have leaked by never being called from native code: {"162":{"module":"UIManager","method":"configureNextLayoutAnimation"},"167":{"module":"UIManager","method":"configureNextLayoutAnimation"},"170":{"module":"UIManager","method":"configureNextLayoutAnimation"},"277":{"module":"UIManager","method":"configureNextLayoutAnimation"},"303":{"module":"UIManager","method":"configureNextLayoutAnimation"},"2525":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2529":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2550":{"module":"UIManager","method":"configureNextLayoutAnimation"},"2559":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2566":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2573":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2580":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2587":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2594":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2602":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2609":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2616":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2623":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2630":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2637":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2644":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2651":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2658":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2665":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2672":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2679":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2686":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2693":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2700":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2707":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2714":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2721":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2728":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2735":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2742":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2749":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2756":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2763":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2770":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2777":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2785":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2792":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2799":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2806":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2813":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2820":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2827":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2834":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2841":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"2849":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"...(truncated keys)...":451} at TouchableOpacity (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:74416:36) at TouchableOpacity at RCTView at View at RCTView at View at RCTView at View at AnimatedComponent (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:78115:38) at AnimatedComponentWrapper at TouchableOpacity (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:74416:36) at TouchableOpacity at anonymous (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:253135:20) at RCTView at View at VirtualizedListCellContextProvider (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:82513:24) at CellRenderer (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:80348:36) at RCTScrollContentView at RCTScrollView at ScrollView (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:80583:36) at ScrollView at VirtualizedListContextProvider (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:82488:25) at VirtualizedList (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:79261:36) at FlatList (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:78757:36) at RCTView at View at RCTScrollContentView at RCTScrollView at ScrollView (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:80583:36) at ScrollView at RCTView at View at GeneralUser (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:377075:27) at HomeNew (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:374965:26) at StaticContainer (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:135622:17) at EnsureSingleNavigator (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:131878:24) at SceneView (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:135533:22) at RCTView at View at RCTView at View at RCTView at View at CardSheet (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:431773:23) at RCTView at View at AnimatedComponent (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:78115:38) at AnimatedComponentWrapper at PanGestureHandler (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:152487:38) at PanGestureHandler (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:431837:34) at RCTView at View at AnimatedComponent (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:78115:38) at AnimatedComponentWrapper at RCTView at View at Card (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:431286:36) at CardContainer (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:430940:34) at RCTView at View at AnimatedComponent (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:78115:38) at AnimatedComponentWrapper at InnerScreen (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:94605:36) at Screen (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:94870:36) at MaybeScreen (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:431886:24) at RCTView at View at ScreenContainer (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:94726:31) at MaybeScreenContainer (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:431876:23) at RCTView at View at Background (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:428233:21) at CardStack (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:429332:36) at RCTView at View at SafeAreaProviderCompat (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:429129:25) at RCTView at View at GestureHandlerRootView at StackView (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:427363:36) at PreventRemoveProvider (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:134651:25) at NavigationContent (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:135356:22) at anonymous (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:135368:27) at StackNavigator (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:427255:18) at HomeTabNavigators (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:178409:29) at StaticContainer (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:135622:17) at EnsureSingleNavigator (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:131878:24) at SceneView (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:135533:22) at RCTView at View at RCTView at View at Background (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:428233:21) at Screen (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:429170:108) at RCTView at View at AnimatedComponent (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:78115:38) at AnimatedComponentWrapper at InnerScreen (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:94605:36) at Screen (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:94870:36) at MaybeScreen (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:432945:24) at RCTView at View at ScreenContainer (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:94726:31) at MaybeScreenContainer (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:432933:23) at RCTView at View at SafeAreaProviderCompat (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:429129:25) at BottomTabView (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:432077:30) at PreventRemoveProvider (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:134651:25) at NavigationContent (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:135356:22) at anonymous (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:135368:27) at BottomTabNavigator (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:431994:18) at BottomTabsNavigator at StaticContainer (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:135622:17) at EnsureSingleNavigator (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:131878:24) at SceneView (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:135533:22) at RCTView at View at RCTView at View at RCTView at View at CardSheet (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:431773:23) at RCTView at View at AnimatedComponent (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:78115:38) at AnimatedComponentWrapper at PanGestureHandler (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:152487:38) at PanGestureHandler (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:431837:34) at RCTView at View at AnimatedComponent (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:78115:38) at AnimatedComponentWrapper at RCTView at View at Card (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:431286:36) at CardContainer (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:430940:34) at RCTView at View at AnimatedComponent (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:78115:38) at AnimatedComponentWrapper at InnerScreen (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:94605:36) at Screen (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:94870:36) at MaybeScreen (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:431886:24) at RCTView at View at ScreenContainer (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:94726:31) at MaybeScreenContainer (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:431876:23) at RCTView at View at Background (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:428233:21) at CardStack (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:429332:36) at RNCSafeAreaProvider at SafeAreaProvider (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:208907:24) at SafeAreaProviderCompat (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:429129:25) at RCTView at View at GestureHandlerRootView at StackView (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:427363:36) at PreventRemoveProvider (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:134651:25) at NavigationContent (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:135356:22) at anonymous (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:135368:27) at StackNavigator (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:427255:18) at EnsureSingleNavigator (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:131878:24) at BaseNavigationContainer (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:131485:28) at ThemeProvider (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:136696:21) at NavigationContainerInner (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:136589:26) at Navigator (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:178220:83) at PersistGate (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:438486:22) at Provider (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:180955:21) at ThemeProvider (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:136696:21) at EntryPoint (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:151618:41) at RCTView at View at RCTView at View at AppContainer (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:84116:36) at saayam(RootComponent) (http://localhost:8081/index.bundle//&platform=ios&dev=true&minify=false&modulesOnly=false&runModule=true&app=com.app.saayamdev:88667:28)
This issue is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 7 days.
@SubramaniyanTN hi! did you fix this? I have the same problem. Thanks.