@infrab4a/connect-angular 4.6.1-beta.0 → 4.6.1-beta.1

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.
@@ -1720,7 +1720,7 @@ class CatalogService {
1720
1720
  return this.findCatalogAndSortByMostRevelantByTerm(productsIds, options, limits);
1721
1721
  }
1722
1722
  if (this.hasCategory(options) && options.sort === 'most-relevant') {
1723
- const mostRelevant = options.category.getMostRelevantByShop(this.shop) ?? [];
1723
+ const mostRelevant = options.category.isWishlist ? [] : options.category.getMostRelevantByShop(this.shop);
1724
1724
  const productsIds = await this.productRepository
1725
1725
  .findCatalog({
1726
1726
  fields: ['id'],