From c94b628f2e7b0069a358bd7ec7bf8ef48741f961 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 31 Mar 2026 17:41:29 +0200 Subject: [PATCH] Fix duplicate case in selection description --- src/app/App.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index c33224f9..ac956539 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -391,8 +391,8 @@ function describeSelection( return `${selection.ids.length} entity selected (${getEntityDisplayLabelById(selection.ids[0], entities)})`; case "modelInstances": return `${selection.ids.length} model instance selected (${getModelInstanceDisplayLabelById(selection.ids[0], modelInstances, assets)})`; - case "modelInstances": - return `${selection.ids.length} model instance selected (${getModelInstanceDisplayLabelById(selection.ids[0], modelInstances, assets)})`; + default: + return "Unknown selection"; } }