From 35cfc409e268900c3e8261c9864bfe41b9852969 Mon Sep 17 00:00:00 2001 From: Manohar Gupta Date: Fri, 22 May 2026 15:16:02 +0530 Subject: [PATCH] Fix input sheet defaults: Lease Rate 0.40, Upfront Fee 0.75%*1.18 - Changed Lease Rate default from 30 to 0.4 Lakh/acre/year - Changed Upfront Fee default from 1% to 0.75%*1.18 (=0.885%) - Updated upfront lease cost calculation to use new default --- packages/web/components/InputsTab.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/web/components/InputsTab.tsx b/packages/web/components/InputsTab.tsx index 711beb6..2d2119f 100644 --- a/packages/web/components/InputsTab.tsx +++ b/packages/web/components/InputsTab.tsx @@ -981,9 +981,9 @@ export function InputsTab({ scenarioId, inputsJson, onSaved }: Props) { upd("project", "land_lease_rate", v)} - step={5} + step={0.05} min={0} suffix="L/acre" /> @@ -998,7 +998,7 @@ export function InputsTab({ scenarioId, inputsJson, onSaved }: Props) { suffix="yr" />
- Upfront Lease Cost: {effectiveLandAcres * (gv(inputs, "project", "land_lease_rate", 30) || 0) * (gv(inputs, "project", "land_lease_years", 5) || 0)} Cr + Upfront Lease Cost: {effectiveLandAcres * (gv(inputs, "project", "land_lease_rate", 0.4) || 0) * (gv(inputs, "project", "land_lease_years", 5) || 0)} Cr
@@ -1471,7 +1471,7 @@ export function InputsTab({ scenarioId, inputsJson, onSaved }: Props) { upd("capex", "upfront_fee_pct", v / 100)} step={0.1} suffix="%"