diff --git a/web/src/components/player/LivePlayer.tsx b/web/src/components/player/LivePlayer.tsx index dcdd6423d..840b6413c 100644 --- a/web/src/components/player/LivePlayer.tsx +++ b/web/src/components/player/LivePlayer.tsx @@ -184,7 +184,13 @@ export default function LivePlayer({ - {[...new Set([...(objects || []).map(({ label }) => label)])] + {[ + ...new Set([ + ...(objects || []).map(({ label, sub_label }) => + label.endsWith("verified") ? sub_label : label, + ), + ]), + ] .filter( (label) => label !== undefined && !label.includes("-verified"),