diff options
Diffstat (limited to 'apps/mobile')
| -rw-r--r-- | apps/mobile/components/bookmarks/BookmarkCard.tsx | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/apps/mobile/components/bookmarks/BookmarkCard.tsx b/apps/mobile/components/bookmarks/BookmarkCard.tsx index 6b3a0f33..5b118f43 100644 --- a/apps/mobile/components/bookmarks/BookmarkCard.tsx +++ b/apps/mobile/components/bookmarks/BookmarkCard.tsx @@ -130,20 +130,10 @@ function ActionBar({ bookmark }: { bookmark: ZBookmark }) { }), }, { - id: "delete", - title: "Delete", - attributes: { - destructive: true, - }, - image: Platform.select({ - ios: "trash", - }), - }, - { id: "manage_list", title: "Manage Lists", image: Platform.select({ - ios: "list", + ios: "list.bullet", }), }, { @@ -153,6 +143,16 @@ function ActionBar({ bookmark }: { bookmark: ZBookmark }) { ios: "tag", }), }, + { + id: "delete", + title: "Delete", + attributes: { + destructive: true, + }, + image: Platform.select({ + ios: "trash", + }), + }, ]} shouldOpenOnLongPress={false} > |
