diff --git a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollView.java b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollView.java index 16521c83f70..f66ed102018 100644 --- a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollView.java +++ b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollView.java @@ -1188,7 +1188,8 @@ public class ReactScrollView extends ScrollView int count = getChildCount(); Assertions.assertCondition( - count == 1, "React Native ScrollView always has exactly 1 child; a content View"); + count <= 1, + "React Native ScrollView should not have more than one child, it should have exactly 1 child; a content View"); if (count > 0) { for (int i = 0; i < count; i++) {