You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/react-native/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/SurfaceMountingManager.kt
+18-13Lines changed: 18 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -756,9 +756,14 @@ internal constructor(
756
756
return
757
757
}
758
758
759
-
val view = getViewState(reactTag).view
759
+
val viewState = getNullableViewState(reactTag)
760
+
val view = viewState?.view
760
761
if (view ==null) {
761
-
throwRetryableMountingLayerException("Unable to find viewState view for tag $reactTag")
0 commit comments