We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 194d162 commit 7e3008eCopy full SHA for 7e3008e
src/Search.tsx
@@ -30,8 +30,8 @@ export const Search: React.FC<SearchParams> = () => {
30
defaultRefinement={config.algoliaIndexName}
31
items={[
32
{ value: config.algoliaIndexName, label: t('featured') },
33
- { value: 'product_price_asc', label: t('price-asc') },
34
- { value: 'product_price_desc', label: t('price-desc') }
+ { value: `${config.algoliaIndexName}_price_asc`, label: t('price-asc') },
+ { value: `${config.algoliaIndexName}_price_desc`, label: t('price-desc') }
35
]}
36
/>
37
</div>
0 commit comments