From 5bc7b02fc79c456faae400ca13980e225d450081 Mon Sep 17 00:00:00 2001 From: Ramanpreet Nara Date: Tue, 11 Jan 2022 14:20:24 -0800 Subject: [PATCH] Fix SVC for AndroidHorizontalScrollContentView Summary: ## Failure ``` LOG SVC AndroidHorizontalScrollContentView Invalid LOG { "missing": { "validAttributes": { "removeClippedSubviews": true } }, "unexpected": {}, "unequal": [] } ``` Changelog: [Internal] Reviewed By: yungsters Differential Revision: D33341774 fbshipit-source-id: 8f287ba00252f8456ad642eaedf38fa3aa2a11ff --- .../AndroidHorizontalScrollContentViewNativeComponent.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Libraries/Components/ScrollView/AndroidHorizontalScrollContentViewNativeComponent.js b/Libraries/Components/ScrollView/AndroidHorizontalScrollContentViewNativeComponent.js index 07105344b7d..63f6e660d53 100644 --- a/Libraries/Components/ScrollView/AndroidHorizontalScrollContentViewNativeComponent.js +++ b/Libraries/Components/ScrollView/AndroidHorizontalScrollContentViewNativeComponent.js @@ -14,6 +14,8 @@ import type {ViewProps} from '../View/ViewPropTypes'; type NativeProps = $ReadOnly<{| ...ViewProps, + + removeClippedSubviews?: ?boolean, |}>; type NativeType = HostComponent;