Skip to content

Commit ecff7b7

Browse files
Merge pull request #49 from CivicTechAtlanta/typo-fixes
save
2 parents 972744c + a4b7548 commit ecff7b7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/app/locales/es.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"Step" : "Paso",
33
"Calculator Flow" : "Flujo de Cálculo",
4-
"Start Clorination Flow" : "Iniciar Flujo de Cloración",
4+
"Start Chlorination Flow" : "Iniciar Flujo de Cloración",
55
"Formula Titles": "Cálculos",
66
"title": "Prueba de Idioma",
77
"description": "Esto probará los idiomas.",

src/app/mother-tank-maximum-weight/components/Form.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,10 @@ export default function Form({ onCalculate, sharedState }: FormProps) {
6161

6262
let motherTankMaximumWeightSolution;
6363
if (chlorinePct != 0) {
64+
console.log("Calculating mother tank maximum weight solution with chlorine percentage:", chlorinePct);
6465
motherTankMaximumWeightSolution =
6566
(motherSolutionVolume * MOTHER_TANK_MAX_CHLORINATION_CONCENTRATION) /
66-
(10 * chlorinePct);
67+
(chlorinePct*1000);
6768
} else {
6869
motherTankMaximumWeightSolution = 0;
6970
}

0 commit comments

Comments
 (0)