From 7012525ad67c9430269c981b1135b98872978cd8 Mon Sep 17 00:00:00 2001 From: dtoro Date: Thu, 16 Jul 2026 08:29:27 +0200 Subject: [PATCH] chore(web): remove dead 'approval' case in ActivityTimeline icon map The approval entry type was removed from ActivityEntry upstream; this case/import were unreachable leftovers after merging that change in. Co-Authored-By: Claude Sonnet 5 --- web/src/lib/components/ActivityTimeline.svelte | 2 -- 1 file changed, 2 deletions(-) diff --git a/web/src/lib/components/ActivityTimeline.svelte b/web/src/lib/components/ActivityTimeline.svelte index 5c30449..74def00 100644 --- a/web/src/lib/components/ActivityTimeline.svelte +++ b/web/src/lib/components/ActivityTimeline.svelte @@ -8,7 +8,6 @@ import SparklesIcon from '@lucide/svelte/icons/sparkles' import HelpCircleIcon from '@lucide/svelte/icons/help-circle' import FlagIcon from '@lucide/svelte/icons/flag' - import ShieldIcon from '@lucide/svelte/icons/shield' import ChevronDownIcon from '@lucide/svelte/icons/chevron-down' import ChevronRightIcon from '@lucide/svelte/icons/chevron-right' @@ -30,7 +29,6 @@ case 'knowledge': return SparklesIcon case 'complete': return FlagIcon case 'question': return HelpCircleIcon - case 'approval': return ShieldIcon default: return null } }