Skip to content

Commit c2d273d

Browse files
committed
Remove subscription URLs in compact mode
1 parent 45751ae commit c2d273d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

WordPress/Classes/ViewRelated/Reader/Subscriptions/ReaderSubscriptionCell.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ struct ReaderSubscriptionCell: View {
1111

1212
private var details: String {
1313
let components = [
14-
URL(string: site.siteURL)?.host,
14+
horizontalSizeClass == .compact ? nil : URL(string: site.siteURL)?.host,
1515
Strings.numberOfSubscriptions(with: site.subscriberCount.intValue)
1616
]
1717
return components.compactMap { $0 }.joined(separator: " · ")

0 commit comments

Comments
 (0)