We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1177952 commit bc5181eCopy full SHA for bc5181e
src/content/queries/cs-variants.js
@@ -20,6 +20,8 @@ export const adapter = (variants) => variants.map(({ selections, product }) => {
20
const minPrice = product.priceRange?.minimum ?? product.price;
21
const maxPrice = product.priceRange?.maximum ?? product.price;
22
23
+ console.debug('minPrice, maxPrice: ', minPrice, maxPrice);
24
+
25
/** @type {Variant} */
26
const variant = {
27
name: product.name,
0 commit comments