add extra group price

This commit is contained in:
2025-11-10 21:36:00 +03:00
parent 7df267af5a
commit dc18d84ac8
6 changed files with 36 additions and 39 deletions

View File

@@ -168,7 +168,7 @@ export default function Variants({
return {
value: value,
label: value,
price: variant ? `+${variant.price}` : "",
price: variant ? `+${Number(variant.price).toFixed(2)}` : "",
};
})}
value={selectedVariants[index] || ""}