We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f443f6d + 3231591 commit bb9f134Copy full SHA for bb9f134
frontend/src/pages/ReportDetail/components/AiAnalysisTab.tsx
@@ -27,7 +27,9 @@ const AiAnalysisTab: React.FC<AiAnalysisTabProps> = ({
27
const flaggedValues: LabValue[] = reportData.labValues.filter(
28
(value) => value.status !== 'normal',
29
);
30
- const normalValues: LabValue[] = [];
+ const normalValues: LabValue[] = reportData.labValues.filter(
31
+ (value) => value.status === 'normal',
32
+ );
33
34
// Format confidence score for display
35
const confidenceScore = reportData.confidence;
0 commit comments