Skip to content

Commit cfb021b

Browse files
committedNov 29, 2024
Fix images
1 parent b303c4c commit cfb021b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎Packages/Features/Sources/PostUI/Row/PostRowImagesView.swift

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,10 @@ struct PostRowImagesView: View {
1717
.rotationEffect(.degrees(Double(index) * 10))
1818
.offset(
1919
x: 5 * CGFloat(index),
20-
y: images.images.count == 1 ? 0 : 10
20+
y: images.images.count <= 2 ? 0 : 10
2121
)
2222
}
2323
}
24-
.zIndex(1000)
2524
} else {
2625
ForEach(images.images, id: \.self.thumbnailImageURL) { image in
2726
makeImageView(image: image)

0 commit comments

Comments
 (0)