@veloceapps/sdk 8.0.0-130 → 8.0.0-132

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.
@@ -1072,7 +1072,10 @@ class FlowStateService {
1072
1072
  * Initializing a standalone product configuration UI, as procedure is execute in /price call
1073
1073
  * Initializing an empty account (account with no assets)
1074
1074
  */
1075
- const isEmptyAccountMode = this.contextService.mode === ConfigurationContextMode.ACCOUNT && !this.quoteDraftService.hasProducts;
1075
+ const isEmptyAccountMode = this.contextService.mode === ConfigurationContextMode.ACCOUNT &&
1076
+ !this.quoteDraftService.hasProducts &&
1077
+ !this.quoteDraftService.hasAssets &&
1078
+ !this.quoteDraftService.quoteDraft?.initialState.length;
1076
1079
  if (this.quoteDraftService.isStandalone || isEmptyAccountMode) {
1077
1080
  return of(undefined);
1078
1081
  }