Commit c5e9603f authored by Rafael's avatar Rafael

Corrige valor do empréstimo no simulador.

parent 4d5d769e
......@@ -54,7 +54,7 @@ const CreditLinesInfo = (props: Props) => {
<GridLine label="Custo efetivo total anual (CET)" value={`${subproduct?.yearlyCET?.toFixed(2) || ''} %`} />
<GridLine label="Taxa abertura crédito (TAC)" value={formatCurrency(subproduct?.TAC?.toFixed(2))} />
<GridLine label="Valor total liberado líquido" value={formatCurrency(subproduct?.totalLiberateLiquidValue?.toFixed(2))} />
<GridLine label="Valor do empréstimo" value={formatCurrency(subproduct?.feeTotalValue?.toFixed(2))} />
<GridLine label="Valor do empréstimo" value={formatCurrency(subproduct?.loanValue?.toFixed(2))} />
<GridLine label="Sistema de amortização" value={subproduct?.amortization ? AMORTIZATIONS[subproduct.amortization] : ''} />
<GridLine label="Quatidade de parcelas da carência" value={subproduct?.graceInstallementAmount?.toString() || ''} />
<GridLine label="Valor total calculado" value={formatCurrency(subproduct?.totalCalcValue?.toFixed(2) || '')} />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment