Add default value for newArchitectureEnabled param (#46140)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/46140

Add default value for newArchitectureEnabled param

changelog: [internal] internal

Reviewed By: shwanton

Differential Revision: D61621224

fbshipit-source-id: 728c91f9ce10ad5872f86cd223ea30c8f9bde413
This commit is contained in:
David Vacca
2024-08-21 15:38:23 -07:00
committed by Facebook GitHub Bot
parent 954e294183
commit 5f7538cfdd
@@ -14,7 +14,7 @@ import com.facebook.react.config.ReactFeatureFlags
* com.facebook.react.config.ReactFeatureFlags} when newArchitectureEnabled is true.
*/
public open class ReactNativeNewArchitectureFeatureFlagsDefaults(
private val newArchitectureEnabled: Boolean
private val newArchitectureEnabled: Boolean = true
) : ReactNativeFeatureFlagsDefaults() {
init {