@veloceapps/sdk 8.0.0-130 → 8.0.0-131

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
  }