@veloceapps/sdk 10.0.0-29 → 10.0.0-30

Sign up to get free protection for your applications and to get access to all the features.
@@ -1492,7 +1492,7 @@ class ConfigurationService {
1492
1492
  generateLineItem() {
1493
1493
  const runtimeContext = this.getRuntimeContext();
1494
1494
  const uiDefinitionProperties = this.getUIDefinitionProperties();
1495
- let lineItem = cloneDeep(this.configurableRamp);
1495
+ let lineItem = this.configurableRamp;
1496
1496
  if (!lineItem) {
1497
1497
  const { initializationProps } = this.runtimeService ?? {};
1498
1498
  lineItem = getDefaultLineItem(runtimeContext, uiDefinitionProperties, initializationProps?.defaultQty);
@@ -2344,7 +2344,7 @@ class ConfigurationStateService {
2344
2344
  return this.configurationService.configureRequest$(configurationRequest);
2345
2345
  }), map$1(() => {
2346
2346
  // Run selectors and apply them to the state
2347
- const configurationState = cloneDeep(this.configurationService.stateSnapshot);
2347
+ const configurationState = this.configurationService.stateSnapshot;
2348
2348
  if (!configurationState) {
2349
2349
  return { stateId: '', selectors: {} };
2350
2350
  }