refactor(Pix.tsx): removendo console.log

This commit is contained in:
Ana Carolina Duarte Cavalcante 2023-01-26 10:56:11 -03:00
parent 3cd9ed0b6e
commit bd92c3230f

View File

@ -4,11 +4,8 @@ import styles from "./styles.css";
const Pix = () => {
const product = useProduct();
console.log(product)
const pix = {
pixValue: Number(
product?.selectedItem?.sellers[0].commertialOffer.Price
),
pixValue: Number(product?.selectedItem?.sellers[0].commertialOffer.Price),
};
const discount = pix.pixValue * 0.1;
const pixPrice = pix.pixValue - discount;