From 4450eeb24fde834ca5c6dd5c230be01f0501d1d5 Mon Sep 17 00:00:00 2001 From: Manohar Gupta Date: Thu, 28 May 2026 15:17:27 +0530 Subject: [PATCH] Fix: Remove duplicate financing cost in Project Cost Breakdown table The financing cost (IDC + upfront fees) was being displayed both as a separate line item AND included in the total calculation, causing the Total Project Cost to be inflated by the financing amount. This fix removes the separate financing row from the breakdown table while keeping the correct total calculation. --- packages/web/components/InputsTab.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/web/components/InputsTab.tsx b/packages/web/components/InputsTab.tsx index ccbb284..736ea56 100644 --- a/packages/web/components/InputsTab.tsx +++ b/packages/web/components/InputsTab.tsx @@ -817,7 +817,6 @@ export function InputsTab({ scenarioId, inputsJson, onSaved }: Props) { {bessEnabled && bessAll > 0 && Storage (BESS){bessAll.toFixed(2)}} {epcAll > 0 && EPC Overheads{epcAll.toFixed(2)}} {contAll > 0 && Contingency{contAll.toFixed(2)}} - {(idcCost + upfrontCost) > 0 && Financing{(idcCost + upfrontCost).toFixed(2)}} Total Project Cost {(totalCostCr + idcCost + upfrontCost).toFixed(2)}