From 5663f41f226cbf2aa68a89a5ef72842db4e868ee Mon Sep 17 00:00:00 2001 From: Helena Date: Mon, 25 Aug 2025 19:48:37 +0300 Subject: [PATCH] switch weight and height parameters in analysis view --- app/doctor/_components/analysis-view.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/doctor/_components/analysis-view.tsx b/app/doctor/_components/analysis-view.tsx index 762c4bd..824d59a 100644 --- a/app/doctor/_components/analysis-view.tsx +++ b/app/doctor/_components/analysis-view.tsx @@ -183,7 +183,7 @@ export default function AnalysisView({
-
{bmiFromMetric(patient?.height ?? 0, patient?.weight ?? 0)}
+
{bmiFromMetric(patient?.weight ?? 0, patient?.height ?? 0)}