Delete enableFabricInLogBox flag

Summary:
This diff deletes the ReactFeatureFlag enableFabricInLogBox, from now on Logbox will be rendered in Fabric when Fabric is enabled

changelog: [internal] internal

Reviewed By: genkikondo

Differential Revision: D33781626

fbshipit-source-id: 3187a22fec80125afd27860995637564640dab8d
This commit is contained in:
David Vacca
2022-01-27 17:03:25 -08:00
committed by Facebook GitHub Bot
parent ea90a76efe
commit 9abcea7e11
2 changed files with 1 additions and 4 deletions
@@ -336,7 +336,7 @@ public class ReactInstanceManager {
Activity currentActivity = getCurrentActivity();
if (currentActivity != null) {
ReactRootView rootView = new ReactRootView(currentActivity);
rootView.setIsFabric(ReactFeatureFlags.enableFabricInLogBox);
rootView.setIsFabric(ReactFeatureFlags.enableFabricRenderer);
rootView.startReactApplication(ReactInstanceManager.this, appKey, null);
return rootView;
}