diff --git a/src/lib/components/BulkList/BulkList.svelte b/src/lib/components/BulkList/BulkList.svelte index 12e36c5..4ba2c89 100644 --- a/src/lib/components/BulkList/BulkList.svelte +++ b/src/lib/components/BulkList/BulkList.svelte @@ -11,19 +11,9 @@ const selectAllItems = ({ target }: Event) => { importBookmarkStore.setSelectStatusForAll(target.checked); } }; - -const removeSelectedItems = () => { - importBookmarkStore.removeSelected(); -}; -