Skip to content

Commit bb9f134

Browse files
authored
Merge pull request #158 from ModusCreateOrg/ADE-200-Adam-fix
fix: populate normalValues in AiAnalysisTab component
2 parents f443f6d + 3231591 commit bb9f134

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)