Hot Loading should be disabled by default
Summary: public Although the feature itself is gated, once the user is on the experiment we want to make sure hot loading starts disabled up until the feature is enabled through the dev menu. Reviewed By: javache Differential Revision: D2850070 fb-gh-sync-id: 66e69e152806d3bb01985afe20827e3b9cffeb41
This commit is contained in:
parent
17e1ceb543
commit
c434893878
|
@ -267,7 +267,7 @@ RCT_EXPORT_MODULE()
|
||||||
self.shakeToShow = [_settings[@"shakeToShow"] ?: @YES boolValue];
|
self.shakeToShow = [_settings[@"shakeToShow"] ?: @YES boolValue];
|
||||||
self.profilingEnabled = [_settings[@"profilingEnabled"] ?: @NO boolValue];
|
self.profilingEnabled = [_settings[@"profilingEnabled"] ?: @NO boolValue];
|
||||||
self.liveReloadEnabled = [_settings[@"liveReloadEnabled"] ?: @NO boolValue];
|
self.liveReloadEnabled = [_settings[@"liveReloadEnabled"] ?: @NO boolValue];
|
||||||
self.hotLoadingEnabled = [_settings[@"hotLoadingEnabled"] ?: @YES boolValue];
|
self.hotLoadingEnabled = [_settings[@"hotLoadingEnabled"] ?: @NO boolValue];
|
||||||
self.showFPS = [_settings[@"showFPS"] ?: @NO boolValue];
|
self.showFPS = [_settings[@"showFPS"] ?: @NO boolValue];
|
||||||
self.executorClass = NSClassFromString(_executorOverride ?: _settings[@"executorClass"]);
|
self.executorClass = NSClassFromString(_executorOverride ?: _settings[@"executorClass"]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue