From 7e11ee3d470ea1d7698c0fea2473981ce9e3add9 Mon Sep 17 00:00:00 2001 From: Michele Riva Date: Mon, 16 Oct 2023 21:05:42 +0200 Subject: [PATCH] removes unsupported filters --- lib/constants.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/constants.ts b/lib/constants.ts index 99711221a..8017746c2 100644 --- a/lib/constants.ts +++ b/lib/constants.ts @@ -14,8 +14,6 @@ export const defaultSort: SortFilterItem = { export const sorting: SortFilterItem[] = [ defaultSort, - { title: 'Trending', slug: 'trending-desc', sortKey: 'BEST_SELLING', reverse: false }, // asc - { title: 'Latest arrivals', slug: 'latest-desc', sortKey: 'CREATED_AT', reverse: true }, { title: 'Price: Low to high', slug: 'price-asc', sortKey: 'PRICE', reverse: false }, // asc { title: 'Price: High to low', slug: 'price-desc', sortKey: 'PRICE', reverse: true } ];