From 254d33323d4d209e6d0e521fd1cd990a3b62db26 Mon Sep 17 00:00:00 2001 From: Gordon Williams Date: Fri, 14 Mar 2025 11:39:40 +0000 Subject: [PATCH] fix lint error --- apps/health/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/health/app.js b/apps/health/app.js index b7f90cc16..6a461da2b 100644 --- a/apps/health/app.js +++ b/apps/health/app.js @@ -39,7 +39,7 @@ function menuDistance() { /*LANG*/"per hour": () => showGraph({id:"stepsPerHour",range:"hour",field:"steps",mult:distMult, back:menuDistance}), /*LANG*/"per day": () => { showGraph({id:"stepsPerDay",range:"day",field:"steps",mult:distMult, back:menuDistance}) - drawHorizontalLine(settings.stepGoal * (mult || 1)); + drawHorizontalLine(settings.stepGoal * (distMult || 1)); } }); }