diff --git a/apple/OmnivoreKit/Sources/Views/FeedItem/GridCard.swift b/apple/OmnivoreKit/Sources/Views/FeedItem/GridCard.swift index f1c7acb27..a8652b8c5 100644 --- a/apple/OmnivoreKit/Sources/Views/FeedItem/GridCard.swift +++ b/apple/OmnivoreKit/Sources/Views/FeedItem/GridCard.swift @@ -155,7 +155,6 @@ public struct GridCard: View { Spacer() } - // .onTapGesture { tapHandler() } } .frame(height: 30) .padding(.horizontal, 10) @@ -167,7 +166,7 @@ public struct GridCard: View { Text(item.descriptionText ?? item.unwrappedTitle) .font(.appSubheadline) .foregroundColor(.appGrayTextContrast) - .lineLimit(nil) + .lineLimit(3) .multilineTextAlignment(.leading) Spacer() @@ -185,11 +184,6 @@ public struct GridCard: View { } .padding(.horizontal, 10) } - // .onTapGesture { tapHandler() } - } - - if item.serverSyncStatus != ServerSyncStatus.isNSync.rawValue { - SyncStatusIcon(status: ServerSyncStatus(rawValue: Int(item.serverSyncStatus)) ?? ServerSyncStatus.isNSync) } } .padding(.horizontal, 0) diff --git a/apple/OmnivoreKit/Sources/Views/FeedItem/LibraryItemCard.swift b/apple/OmnivoreKit/Sources/Views/FeedItem/LibraryItemCard.swift index f52199f98..41b51f716 100644 --- a/apple/OmnivoreKit/Sources/Views/FeedItem/LibraryItemCard.swift +++ b/apple/OmnivoreKit/Sources/Views/FeedItem/LibraryItemCard.swift @@ -27,8 +27,8 @@ public struct LibraryItemCard: View { public var body: some View { VStack { HStack(alignment: .top, spacing: 10) { - imageBox articleInfo + imageBox } .frame(maxWidth: .infinity, maxHeight: .infinity) @@ -156,12 +156,12 @@ public struct LibraryItemCard: View { image .resizable() .aspectRatio(contentMode: .fill) - .frame(width: 74 * 0.666, height: 74) + .frame(width: 60, height: 60) .cornerRadius(5) .padding(.top, 2) } else { Color.systemBackground - .frame(width: 74 * 0.666, height: 74) + .frame(width: 60, height: 60) .cornerRadius(5) .padding(.top, 2) }