diff --git a/frontend/packages/data-portal/app/components/Run/RunHeader.tsx b/frontend/packages/data-portal/app/components/Run/RunHeader.tsx index 89380109b..4489d1959 100644 --- a/frontend/packages/data-portal/app/components/Run/RunHeader.tsx +++ b/frontend/packages/data-portal/app/components/Run/RunHeader.tsx @@ -251,9 +251,13 @@ export function RunHeader() { { label: i18n.annotatedObjects, inline: true, - values: run.tomogram_stats - .flatMap((stats) => stats.annotations) - .map((annotation) => annotation.object_name), + values: Array.from( + new Set( + run.tomogram_stats + .flatMap((stats) => stats.annotations) + .map((annotation) => annotation.object_name), + ), + ), }, ]} />