diff --git a/src/components/buy-together/services/front-buy-together.adapter.ts b/src/components/buy-together/services/front-buy-together.adapter.ts index f01815b..696bfa7 100644 --- a/src/components/buy-together/services/front-buy-together.adapter.ts +++ b/src/components/buy-together/services/front-buy-together.adapter.ts @@ -46,7 +46,7 @@ export class FrontBuyTogetherAdapter { const adaptSpecialPrice = (payments: Payment[]): number | null => { const pixMethod = payments.find(payment => payment.method === 'pix'); if (pixMethod) { - const specialPrice = product.price * Number(pixMethod.markup); + const specialPrice = Number(pixMethod.installment.total); return specialPrice; } return null;