diff options
| author | Fuwn <[email protected]> | 2025-06-16 03:42:21 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-06-16 03:42:21 -0700 |
| commit | 55410c9e5c177944ed43cee67c4e865be858cfe6 (patch) | |
| tree | 85c070b63eb57f0b622b36c150c737e793c75b44 /Sora/Views/Post/Grid/PostGridView.swift | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-55410c9e5c177944ed43cee67c4e865be858cfe6.tar.xz sora-testing-55410c9e5c177944ed43cee67c4e865be858cfe6.zip | |
feat: Development commit
Diffstat (limited to 'Sora/Views/Post/Grid/PostGridView.swift')
| -rw-r--r-- | Sora/Views/Post/Grid/PostGridView.swift | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Sora/Views/Post/Grid/PostGridView.swift b/Sora/Views/Post/Grid/PostGridView.swift index cee89ad..0d8b022 100644 --- a/Sora/Views/Post/Grid/PostGridView.swift +++ b/Sora/Views/Post/Grid/PostGridView.swift @@ -38,10 +38,7 @@ struct PostGridView: View { // swiftlint:disable:this type_body_length LazyVGrid(columns: gridItems) { ForEach(0..<(50 / settings.thumbnailGridColumns), id: \.self) { _ in - RoundedRectangle(cornerRadius: 8) - .fill(Color(.systemGray5)) - .aspectRatio(1, contentMode: .fit) - .redacted(reason: .placeholder) + PostGridThumbnailPlaceholderView() } } .padding(.horizontal) |