From 24ba7dfe6feaacef76718491b8cb260d05afab9b Mon Sep 17 00:00:00 2001 From: Alex Stein <54838842+steinalex@users.noreply.github.com> Date: Thu, 27 Mar 2025 12:25:44 -0700 Subject: [PATCH] Update TS docs for contentInsetAdjustmentBehavior (#50069) Summary: Update the TS docs to reflect the default value for `contentInsetAdjustmentBehavior`. The TS docs suggest it will be `automatic` however it's actually `never`. The default behaviour is correctly specified in the JS docs: https://github.com/facebook/react-native/blob/850760ab6112d1f38a5a9014282ae5186ab814d6/packages/react-native/Libraries/Components/ScrollView/ScrollView.js#L306 It's also documented as the default in the native module: https://github.com/facebook/react-native/blob/main/packages/react-native/React/Fabric/Mounting/ComponentViews/ScrollView/RCTEnhancedScrollView.mm#L34 ## Changelog: [General] [Fixed] - Fix TS docs for `contentInsetAdjustmentBehavior`