diff --git a/src/components/BookmarkItem.tsx b/src/components/BookmarkItem.tsx index e90baf8a..0f862770 100644 --- a/src/components/BookmarkItem.tsx +++ b/src/components/BookmarkItem.tsx @@ -129,7 +129,7 @@ export const BookmarkItem: React.FC = ({ bookmark, index, onS if (!hasUrls) return const firstUrl = extractedUrls[0] if (onSelectUrl) { - onSelectUrl(firstUrl) + onSelectUrl(firstUrl, bookmark) } else { window.open(firstUrl, '_blank') } diff --git a/src/components/BookmarkViews/CardView.tsx b/src/components/BookmarkViews/CardView.tsx index 23412586..b2414d0d 100644 --- a/src/components/BookmarkViews/CardView.tsx +++ b/src/components/BookmarkViews/CardView.tsx @@ -145,7 +145,7 @@ export const CardView: React.FC = ({