mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
remove aspect ratio constraint
This commit is contained in:
parent
9cab60b107
commit
bca28bb699
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue