Entrega do Desafio #1

Merged
anacarolinaduartecavalcante merged 93 commits from feature/challenge-vtex-io into develop 2023-02-03 17:14:03 +00:00
Showing only changes of commit bd92c3230f - Show all commits

View File

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