diff --git a/src/components/HighlightItem.tsx b/src/components/HighlightItem.tsx index 92135588..a2a6d641 100644 --- a/src/components/HighlightItem.tsx +++ b/src/components/HighlightItem.tsx @@ -32,7 +32,7 @@ interface HighlightItemProps { export const HighlightItem: React.FC = ({ highlight, - onSelectUrl, + // onSelectUrl is not used but kept in props for API compatibility isSelected, onHighlightClick, relayPool, @@ -242,11 +242,6 @@ export const HighlightItem: React.FC = ({ // Check if current user can delete this highlight const canDelete = activeAccount && highlight.pubkey === activeAccount.pubkey - const handleDeleteClick = (e: React.MouseEvent) => { - e.stopPropagation() - setShowDeleteConfirm(true) - } - const handleConfirmDelete = async () => { if (!activeAccount || !relayPool) { console.warn('Cannot delete: no account or relay pool')