chore(web): remove dead 'approval' case in ActivityTimeline icon map
Some checks failed
ci / build-test (push) Has been cancelled
ci / docker-build (push) Has been cancelled
Desktop App / Build Linux (amd64) (push) Has been cancelled
Desktop App / Attach to Release (push) Has been cancelled

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 <noreply@anthropic.com>
This commit is contained in:
2026-07-16 08:29:27 +02:00
parent 127b939a95
commit 7012525ad6

View File

@@ -8,7 +8,6 @@
import SparklesIcon from '@lucide/svelte/icons/sparkles' import SparklesIcon from '@lucide/svelte/icons/sparkles'
import HelpCircleIcon from '@lucide/svelte/icons/help-circle' import HelpCircleIcon from '@lucide/svelte/icons/help-circle'
import FlagIcon from '@lucide/svelte/icons/flag' import FlagIcon from '@lucide/svelte/icons/flag'
import ShieldIcon from '@lucide/svelte/icons/shield'
import ChevronDownIcon from '@lucide/svelte/icons/chevron-down' import ChevronDownIcon from '@lucide/svelte/icons/chevron-down'
import ChevronRightIcon from '@lucide/svelte/icons/chevron-right' import ChevronRightIcon from '@lucide/svelte/icons/chevron-right'
@@ -30,7 +29,6 @@
case 'knowledge': return SparklesIcon case 'knowledge': return SparklesIcon
case 'complete': return FlagIcon case 'complete': return FlagIcon
case 'question': return HelpCircleIcon case 'question': return HelpCircleIcon
case 'approval': return ShieldIcon
default: return null default: return null
} }
} }