From bca28bb6995d83d381bfbef014ca9e62c9134a5c Mon Sep 17 00:00:00 2001 From: Satindar Dhillon Date: Mon, 9 May 2022 15:33:02 -0700 Subject: [PATCH] remove aspect ratio constraint --- apple/OmnivoreKit/Sources/Views/FeedItem/HomeFeedCardView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apple/OmnivoreKit/Sources/Views/FeedItem/HomeFeedCardView.swift b/apple/OmnivoreKit/Sources/Views/FeedItem/HomeFeedCardView.swift index 96690b7f6..52a477c39 100644 --- a/apple/OmnivoreKit/Sources/Views/FeedItem/HomeFeedCardView.swift +++ b/apple/OmnivoreKit/Sources/Views/FeedItem/HomeFeedCardView.swift @@ -50,7 +50,7 @@ public struct FeedCard: View { if case let AsyncImageStatus.loaded(image) = imageStatus { image .resizable() - .aspectRatio(1, contentMode: .fill) + .aspectRatio(contentMode: .fill) .frame(width: 80, height: 80) .cornerRadius(6) } else if case AsyncImageStatus.loading = imageStatus {