Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,7 @@ public open class ReactDelegate {
*
* @return true if Fabric is enabled for this Activity, false otherwise.
*/
protected var isFabricEnabled: Boolean =
ReactNativeNewArchitectureFeatureFlags.enableFabricRenderer()
private set
protected val isFabricEnabled: Boolean = true

/**
* Do not use this constructor as it's not accounting for New Architecture at all. You should use
Expand Down Expand Up @@ -95,7 +93,6 @@ public open class ReactDelegate {
launchOptions: Bundle?,
fabricEnabled: Boolean,
) {
this.isFabricEnabled = fabricEnabled
this.activity = activity
this.mainComponentName = appKey
this.launchOptions = launchOptions
Expand Down
Loading