monkey-front-core 0.0.477 → 0.0.478

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3918,14 +3918,16 @@ class MonkeyEcxConfigService extends MonkeyEcxCommonsService {
3918
3918
  monkeyecxMaintenanceConfigService.apply(configBootstrap);
3919
3919
  monkeyecxSecurityConsoleConfigService.apply();
3920
3920
  monkeyGTMConfigService.apply(environment);
3921
- await monkeyecxi18nConfigService.applyInternal(environment);
3921
+ // await monkeyecxi18nConfigService.applyInternal(environment);
3922
3922
  const url = `${environment.urlAssets}/${monkeyecxCode.toLowerCase()}`;
3923
3923
  monkeyStyleGuideSettingsService.bootstrap(`${url}/monkey-style-guide-settings.json`, getWhiteLabel.bind(this, configBootstrap, callback, environment, identifyCode, url));
3924
3924
  }
3925
3925
  getWhiteLabel(configBootstrap, callback, environment, identifyCode, url) {
3926
- const { monkeyecxService, configSubject$, monkeyecxLogsConfigService, monkeyecxErrorConfigService, monkeyEcxFeatureToggleService, monkeyecxi18nConfigService, monkeyEcxAlertsConfigService } = this;
3926
+ const { monkeyecxService, configSubject$, monkeyecxLogsConfigService, monkeyecxErrorConfigService, monkeyEcxFeatureToggleService,
3927
+ // monkeyecxi18nConfigService,
3928
+ monkeyEcxAlertsConfigService } = this;
3927
3929
  monkeyecxService?.get(`${url}/white-label.json`)?.subscribe(async (config) => {
3928
- await monkeyecxi18nConfigService.applyExternal(config, environment);
3930
+ // await monkeyecxi18nConfigService.applyExternal(config, environment);
3929
3931
  monkeyecxLogsConfigService.apply(config, configBootstrap, environment, identifyCode);
3930
3932
  monkeyEcxFeatureToggleService.apply(configSubject$, environment);
3931
3933
  monkeyEcxAlertsConfigService.apply(config);