diff --git a/packages/scandipwa/src/util/Product/Transform.ts b/packages/scandipwa/src/util/Product/Transform.ts index ac580cdf3e..52e06822da 100644 --- a/packages/scandipwa/src/util/Product/Transform.ts +++ b/packages/scandipwa/src/util/Product/Transform.ts @@ -186,7 +186,7 @@ export const bundleOptionToLabel = ( const renderLabel = label ?? fallbackLabel; return { - baseLabel: !canChangeQuantity && quantity >= 0 ? `${ quantity } x ${ renderLabel } ` : `${ renderLabel } `, + baseLabel: !canChangeQuantity && quantity > 0 ? `${ quantity } x ${ renderLabel } ` : `${ renderLabel } `, priceLabel: `${ priceLabel } ${ percentLabel }`, }; };