From c11708945d7965e39864922721bbd715e7987019 Mon Sep 17 00:00:00 2001 From: McCarthy Date: Sun, 10 Mar 2024 21:53:10 +0300 Subject: [PATCH] changed the property on the config object from 'concepts' to 'resultsViewerConcepts' --- .../esm-patient-labs-app/src/test-results/tree-view/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/esm-patient-labs-app/src/test-results/tree-view/index.tsx b/packages/esm-patient-labs-app/src/test-results/tree-view/index.tsx index ba5760b07f..d292993c2d 100644 --- a/packages/esm-patient-labs-app/src/test-results/tree-view/index.tsx +++ b/packages/esm-patient-labs-app/src/test-results/tree-view/index.tsx @@ -16,7 +16,7 @@ interface TreeViewWrapperProps { const TreeViewWrapper: React.FC = (props) => { const config = useConfig(); - const conceptUuids = config?.concepts?.map((c) => c.conceptUuid) ?? []; + const conceptUuids = config?.resultsViewerConcepts?.map((c) => c.conceptUuid) ?? []; const { roots, loading, error } = useGetManyObstreeData(conceptUuids); const { t } = useTranslation();