From bb78142011367c9ecdb855d6fd816cf27e6c4764 Mon Sep 17 00:00:00 2001 From: Samuel Susla Date: Fri, 22 Nov 2024 05:45:13 -0800 Subject: [PATCH] fix code comment for collapsable prop (#47881) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/47881 changelog: [internal] collapsable prop is not only for android. Reviewed By: NickGerleman Differential Revision: D66299356 fbshipit-source-id: 1c7435c77ef029fea55346f4ca16b5c81022b85a --- .../react-native/Libraries/Components/View/ViewPropTypes.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/react-native/Libraries/Components/View/ViewPropTypes.js b/packages/react-native/Libraries/Components/View/ViewPropTypes.js index 00d90a87e30..a0c2d5953ca 100644 --- a/packages/react-native/Libraries/Components/View/ViewPropTypes.js +++ b/packages/react-native/Libraries/Components/View/ViewPropTypes.js @@ -567,9 +567,6 @@ export type ViewProps = $ReadOnly<{| * optimization. Set this property to `false` to disable this optimization and * ensure that this `View` exists in the native view hierarchy. * - * @platform android - * In Fabric, this prop is used in ios as well. - * * See https://reactnative.dev/docs/view#collapsable */ collapsable?: ?boolean,