From 5159325e6d2419edbc038a43adc596a059793739 Mon Sep 17 00:00:00 2001 From: Helena Date: Wed, 27 Aug 2025 09:11:21 +0300 Subject: [PATCH] fix missing id --- app/doctor/analysis/[id]/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/doctor/analysis/[id]/page.tsx b/app/doctor/analysis/[id]/page.tsx index e07f855..2e47ce7 100644 --- a/app/doctor/analysis/[id]/page.tsx +++ b/app/doctor/analysis/[id]/page.tsx @@ -28,7 +28,7 @@ async function AnalysisPage({ if (analysisResultDetails) { await createDoctorPageViewLog({ action: DoctorPageViewAction.VIEW_ANALYSIS_RESULTS, - recordKey: id, + recordKey: analysisResponseId, dataOwnerUserId: analysisResultDetails.patient.userId, }); }