diff options
Diffstat (limited to 'Sora/Views/Post/Grid/PostGridView.swift')
| -rw-r--r-- | Sora/Views/Post/Grid/PostGridView.swift | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Sora/Views/Post/Grid/PostGridView.swift b/Sora/Views/Post/Grid/PostGridView.swift index 9dce682..ac6aeaa 100644 --- a/Sora/Views/Post/Grid/PostGridView.swift +++ b/Sora/Views/Post/Grid/PostGridView.swift @@ -73,6 +73,7 @@ struct PostGridView: View { // swiftlint:disable:this type_body_length .id(post.id) } } + .transaction { $0.animation = nil } } } #if os(macOS) @@ -87,6 +88,7 @@ struct PostGridView: View { // swiftlint:disable:this type_body_length .id(post.id) } .gridStyle(columns: columnCount) + .transaction { $0.animation = nil } #if os(macOS) .padding(8) #else |