diff --git a/Threaded/Components/CompactPostView.swift b/Threaded/Components/CompactPostView.swift index 7ebc959..30cde57 100644 --- a/Threaded/Components/CompactPostView.swift +++ b/Threaded/Components/CompactPostView.swift @@ -143,14 +143,13 @@ struct CompactPostView: View { if !status.mediaAttachments.isEmpty { if status.mediaAttachments.count > 1 { - ScrollView(.horizontal) { + ScrollView(.horizontal, showsIndicators: false) { HStack(alignment: .firstTextBaseline, spacing: 5) { ForEach(status.mediaAttachments) { attachment in PostAttachment(attachment: attachment) } } } - .scrollIndicators(.hidden) .scrollClipDisabled() } else { PostAttachment(attachment: status.mediaAttachments.first!)