Skip to content

Commit 3231591

Browse files
committed
fix: populate normalValues in AiAnalysisTab component
1 parent f443f6d commit 3231591

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

frontend/src/pages/ReportDetail/components/AiAnalysisTab.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ const AiAnalysisTab: React.FC<AiAnalysisTabProps> = ({
2727
const flaggedValues: LabValue[] = reportData.labValues.filter(
2828
(value) => value.status !== 'normal',
2929
);
30-
const normalValues: LabValue[] = [];
30+
const normalValues: LabValue[] = reportData.labValues.filter(
31+
(value) => value.status === 'normal',
32+
);
3133

3234
// Format confidence score for display
3335
const confidenceScore = reportData.confidence;

0 commit comments

Comments
 (0)