From 90a5f3a63e8d76715ebe0c898b57099d9c05890b Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Wed, 22 Oct 2025 05:01:17 -0600 Subject: [PATCH] Choose last item for unknown objects --- web/src/components/card/ClassificationCard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/card/ClassificationCard.tsx b/web/src/components/card/ClassificationCard.tsx index fcc86bc91..661e6c1e8 100644 --- a/web/src/components/card/ClassificationCard.tsx +++ b/web/src/components/card/ClassificationCard.tsx @@ -211,7 +211,7 @@ export function GroupedClassificationCard({ }); if (!best) { - return group[0]; + return group.at(-1); } const bestTyped: ClassificationItemData = best;