diff --git a/frontend/src/lib/components/layout/SelectionBar.svelte b/frontend/src/lib/components/layout/SelectionBar.svelte index a47b181..f760109 100644 --- a/frontend/src/lib/components/layout/SelectionBar.svelte +++ b/frontend/src/lib/components/layout/SelectionBar.svelte @@ -8,14 +8,8 @@ } let { onEditTags, onAddToPool, onDelete }: Props = $props(); - - function handleKeydown(e: KeyboardEvent) { - if (e.key === 'Escape') selectionStore.exit(); - } - -