@infrab4a/connect-angular 4.1.5-beta.3 → 4.1.5-beta.4

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.
@@ -1557,9 +1557,8 @@ class CatalogService {
1557
1557
  const productResult = await this.productRepository.findCatalog({
1558
1558
  filters: {
1559
1559
  id: { operator: Where.IN, value: orderedId },
1560
- // ...this.buildFilterQuery(options?.filters || {}),
1561
1560
  },
1562
- }, options?.mainGender || this.shop === Shops.MENSMARKET ? 'male' : 'female');
1561
+ });
1563
1562
  return {
1564
1563
  data: limitedProductId.map((id) => productResult.data.find((product) => product.id === id)).filter(Boolean),
1565
1564
  count: totalResult.count,