diff --git a/apple/OmnivoreKit/Sources/Views/FeedItem/GridCard.swift b/apple/OmnivoreKit/Sources/Views/FeedItem/GridCard.swift index b3fc58521..e36a2fdb4 100644 --- a/apple/OmnivoreKit/Sources/Views/FeedItem/GridCard.swift +++ b/apple/OmnivoreKit/Sources/Views/FeedItem/GridCard.swift @@ -100,8 +100,8 @@ public struct GridCard: View { .lineLimit(1) } - if let publisherURL = item.publisherDisplayName { - Text(publisherURL) + if let publisherDisplayName = item.publisherDisplayName { + Text(publisherDisplayName) .font(.appCaptionTwo) .foregroundColor(.appGrayText) .underline() diff --git a/apple/OmnivoreKit/Sources/Views/FeedItem/HomeFeedCardView.swift b/apple/OmnivoreKit/Sources/Views/FeedItem/HomeFeedCardView.swift index d8dbea657..077854bb7 100644 --- a/apple/OmnivoreKit/Sources/Views/FeedItem/HomeFeedCardView.swift +++ b/apple/OmnivoreKit/Sources/Views/FeedItem/HomeFeedCardView.swift @@ -26,8 +26,8 @@ public struct FeedCard: View { .lineLimit(1) } - if let publisherURL = item.publisherDisplayName { - Text(publisherURL) + if let publisherDisplayName = item.publisherDisplayName { + Text(publisherDisplayName) .font(.appCaption) .foregroundColor(.appGrayText) .underline()