@infrab4a/connect-angular 4.0.0-beta.54 → 4.0.0-beta.55

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.
@@ -1534,7 +1534,7 @@ class CatalogService {
1534
1534
  options: { minimal: ['price'], maximum: ['price'] },
1535
1535
  };
1536
1536
  if (['biggest-price', 'lowest-price', 'biggest-discount', 'best-rating'].includes(options.sort))
1537
- return this.productRepository.find(repoParams);
1537
+ return this.productRepository.findCatalog(repoParams);
1538
1538
  return this.productRepository.findCatalog(repoParams, options?.mainGender || this.shop === Shops.MENSMARKET ? 'male' : 'female');
1539
1539
  }
1540
1540
  async buildMainFilter({ category, profile, term, }) {