react-native-ai-debugger 1.0.28 → 1.0.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/core/executor.js +1 -1
- package/package.json +1 -1
package/build/core/executor.js
CHANGED
|
@@ -630,7 +630,7 @@ export async function getComponentTree(options = {}) {
|
|
|
630
630
|
|
|
631
631
|
// Find focused screen if requested
|
|
632
632
|
function findFocusedScreen(fiber, depth = 0) {
|
|
633
|
-
if (!fiber || depth >
|
|
633
|
+
if (!fiber || depth > 200) return null;
|
|
634
634
|
|
|
635
635
|
const name = getComponentName(fiber);
|
|
636
636
|
|