diff --git a/framework/spree/product/use-search.tsx b/framework/spree/product/use-search.tsx index 2945592be..7411d7363 100644 --- a/framework/spree/product/use-search.tsx +++ b/framework/spree/product/use-search.tsx @@ -7,7 +7,7 @@ import type { GraphQLFetcherResult } from '@commerce/api' import { IProducts } from '@spree/storefront-api-v2-sdk/types/interfaces/Product' const nextToSpreeSortMap: { [key: string]: string } = { - 'trending-desc': 'updated_at', // FIXME: Spree has no "trending" filter. Using updated_at. + 'trending-desc': 'available_on', 'latest-desc': 'updated_at', 'price-asc': 'price', 'price-desc': '-price',