diff --git a/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift b/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift index cacd54ce8..b74242259 100644 --- a/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift +++ b/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift @@ -195,7 +195,7 @@ import Views itemToRemove = item confirmationShown = true }, - label: { Label("Delete Link", systemImage: "trash") } + label: { Label("Delete", systemImage: "trash") } ) if FeatureFlag.enableSnooze { Button { diff --git a/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewMac.swift b/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewMac.swift index ae02dc4ff..bd4849c14 100644 --- a/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewMac.swift +++ b/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewMac.swift @@ -51,7 +51,7 @@ import Views itemToRemove = item confirmationShown = true }, - label: { Label("Delete Link", systemImage: "trash") } + label: { Label("Delete", systemImage: "trash") } ) if FeatureFlag.enableSnooze { Button { diff --git a/apple/OmnivoreKit/Sources/App/Views/LinkItemDetailView.swift b/apple/OmnivoreKit/Sources/App/Views/LinkItemDetailView.swift index d6f276e69..780a62eb3 100644 --- a/apple/OmnivoreKit/Sources/App/Views/LinkItemDetailView.swift +++ b/apple/OmnivoreKit/Sources/App/Views/LinkItemDetailView.swift @@ -169,27 +169,25 @@ struct LinkItemDetailView: View { ) .padding(.horizontal) .scaleEffect(navBarVisibilityRatio) - if FeatureFlag.showLinkOptionsOnReaderView { - Menu( - content: { - Group { - Button( - action: {}, - label: { Label("Archive", systemImage: "archivebox") } - ) - Button( - action: {}, - label: { Label("Delete Link", systemImage: "trash") } - ) - } - }, - label: { - Image.profile - .padding(.horizontal) - .scaleEffect(navBarVisibilityRatio) + Menu( + content: { + Group { + Button( + action: {}, + label: { Label("Archive", systemImage: "archivebox") } + ) + Button( + action: {}, + label: { Label("Delete", systemImage: "trash") } + ) } - ) - } + }, + label: { + Image.profile + .padding(.horizontal) + .scaleEffect(navBarVisibilityRatio) + } + ) } .frame(height: readerViewNavBarHeight * navBarVisibilityRatio) .opacity(navBarVisibilityRatio) diff --git a/apple/OmnivoreKit/Sources/Utils/FeatureFlags.swift b/apple/OmnivoreKit/Sources/Utils/FeatureFlags.swift index a5a911bd4..67a1faf37 100644 --- a/apple/OmnivoreKit/Sources/Utils/FeatureFlags.swift +++ b/apple/OmnivoreKit/Sources/Utils/FeatureFlags.swift @@ -15,5 +15,4 @@ public enum FeatureFlag { public static let enableShareButton = false public static let enableSnooze = false public static let showFeedItemTags = false - public static let showLinkOptionsOnReaderView = false } diff --git a/apple/OmnivoreKit/Sources/Views/FeedItem/GridCard.swift b/apple/OmnivoreKit/Sources/Views/FeedItem/GridCard.swift index 9049024b1..17f1c1c49 100644 --- a/apple/OmnivoreKit/Sources/Views/FeedItem/GridCard.swift +++ b/apple/OmnivoreKit/Sources/Views/FeedItem/GridCard.swift @@ -53,7 +53,7 @@ public struct GridCard: View { ) Button( action: { menuActionHandler(.delete) }, - label: { Label("Delete Link", systemImage: "trash") } + label: { Label("Delete", systemImage: "trash") } ) } }