diff --git a/entrypoints/sidepanel/components/collections/CollectionMoreButton.tsx b/entrypoints/sidepanel/components/collections/CollectionMoreButton.tsx index e944691..ec35684 100644 --- a/entrypoints/sidepanel/components/collections/CollectionMoreButton.tsx +++ b/entrypoints/sidepanel/components/collections/CollectionMoreButton.tsx @@ -19,7 +19,6 @@ export default function CollectionMoreButton({ onAddSelected }: CollectionMoreBu const GroupIcon = ic.bundleIcon(ic.GroupList20Filled, ic.GroupList20Regular); const EditIcon = ic.bundleIcon(ic.Edit20Filled, ic.Edit20Regular); const DeleteIcon = ic.bundleIcon(ic.Delete20Filled, ic.Delete20Regular); - const PinnedIcon = ic.bundleIcon(ic.Pin20Filled, ic.Pin20Regular); const BookmarkIcon = ic.bundleIcon(ic.BookmarkAdd20Filled, ic.BookmarkAdd20Regular); const dangerCls = useDangerStyles(); @@ -54,17 +53,6 @@ export default function CollectionMoreButton({ onAddSelected }: CollectionMoreBu onSave={ group => updateCollection({ ...collection, items: [...collection.items, group] }, collectionIndex) } /> ); - const handleAddPinnedGroup = () => - { - updateCollection({ - ...collection, - items: [ - { type: "group", pinned: true, items: [] }, - ...collection.items - ] - }, collectionIndex); - }; - return (