From 1f670b454e8e27750dfdc38d5e2e9335176ec082 Mon Sep 17 00:00:00 2001 From: Marty Bostick Date: Wed, 29 Jul 2026 22:33:54 +0000 Subject: [PATCH] =?UTF-8?q?Fix=20scenario=20comparison=20table=20showing?= =?UTF-8?q?=20zeros=20=E2=80=94=20use=20actualPeople=20instead=20of=20numP?= =?UTF-8?q?eople=20on=20yr1/totalEG/monthly=20columns?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 98f4962..c2e12ae 100644 --- a/index.html +++ b/index.html @@ -1919,9 +1919,9 @@ ${numPeople > 0 ? ` $${s.yourCost.toLocaleString()} $${s.yourCost.toLocaleString()} ~${s.time} months - $${Math.round(s.yr1 * adj * numPeople).toLocaleString()} - $${Math.round(s.totalEG * adj * numPeople).toLocaleString()} - $${Math.round(s.monthly * adj * numPeople).toLocaleString()}/mo + $${Math.round(s.yr1 * adj * actualPeople).toLocaleString()} + $${Math.round(s.totalEG * adj * actualPeople).toLocaleString()} + $${Math.round(s.monthly * adj * actualPeople).toLocaleString()}/mo `; } document.getElementById('comparisonBody').innerHTML = cRows;