Fix incorrect mismatch for object vs sub label

This commit is contained in:
Nicolas Mowen 2025-12-19 11:25:22 -07:00
parent 59a462057a
commit 442eeec603

View File

@ -233,7 +233,7 @@ export function GroupedClassificationCard({
}); });
if (!best) { if (!best) {
return group.at(-1); best = group.at(-1)!;
} }
const bestTyped: ClassificationItemData = best; const bestTyped: ClassificationItemData = best;