diff --git a/src/marketplace-custom-config.js b/src/marketplace-custom-config.js index c07f7152..cd717a38 100644 --- a/src/marketplace-custom-config.js +++ b/src/marketplace-custom-config.js @@ -43,3 +43,11 @@ export const categories = [ { key: 'wood', label: 'Wood' }, { key: 'other', label: 'Other' }, ]; + +// Price filter configuration +// Note: unlike most prices this is not handled in subunits +export const priceFilterConfig = { + min: 0, + max: 1000, + step: 5, +};