File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -153,7 +153,6 @@ - (void)initializeReactHostWithLaunchOptions:(NSDictionary *)launchOptions
153153{
154154 // Enable TurboModule interop by default in Bridgeless mode
155155 RCTEnableTurboModuleInterop (YES );
156- RCTEnableTurboModuleInteropBridgeProxy (YES );
157156
158157 [self createReactHostIfNeeded: launchOptions
159158 bundleConfiguration: bundleConfiguration
Original file line number Diff line number Diff line change @@ -54,10 +54,6 @@ void RCTEnableTurboModule(BOOL enabled);
5454BOOL RCTTurboModuleInteropEnabled (void );
5555void RCTEnableTurboModuleInterop (BOOL enabled);
5656
57- // Turn on TurboModule interop's Bridge proxy
58- BOOL RCTTurboModuleInteropBridgeProxyEnabled (void );
59- void RCTEnableTurboModuleInteropBridgeProxy (BOOL enabled);
60-
6157// Turn on the fabric interop layer
6258BOOL RCTFabricInteropLayerEnabled (void );
6359void RCTEnableFabricInteropLayer (BOOL enabled);
Original file line number Diff line number Diff line change @@ -209,17 +209,6 @@ void RCTEnableTurboModuleInterop(BOOL enabled)
209209 turboModuleInteropEnabled = enabled;
210210}
211211
212- static BOOL turboModuleInteropBridgeProxyEnabled = NO ;
213- BOOL RCTTurboModuleInteropBridgeProxyEnabled (void )
214- {
215- return turboModuleInteropBridgeProxyEnabled;
216- }
217-
218- void RCTEnableTurboModuleInteropBridgeProxy (BOOL enabled)
219- {
220- turboModuleInteropBridgeProxyEnabled = enabled;
221- }
222-
223212static BOOL fabricInteropLayerEnabled = YES ;
224213BOOL RCTFabricInteropLayerEnabled ()
225214{
You can’t perform that action at this time.
0 commit comments