summaryrefslogtreecommitdiff
path: root/Sora/Views/Post/PostGridView.swift
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-02-22 05:34:46 -0800
committerFuwn <[email protected]>2025-02-22 05:34:46 -0800
commit8521f79db23095cfe830bb61abd9f7e5c2f691eb (patch)
tree97578df63113d19f995356c25c6a6ce477af4531 /Sora/Views/Post/PostGridView.swift
parentfeat: Development commit (diff)
downloadsora-testing-8521f79db23095cfe830bb61abd9f7e5c2f691eb.tar.xz
sora-testing-8521f79db23095cfe830bb61abd9f7e5c2f691eb.zip
feat: Development commit
Diffstat (limited to 'Sora/Views/Post/PostGridView.swift')
-rw-r--r--Sora/Views/Post/PostGridView.swift4
1 files changed, 1 insertions, 3 deletions
diff --git a/Sora/Views/Post/PostGridView.swift b/Sora/Views/Post/PostGridView.swift
index c6f96ae..fb813af 100644
--- a/Sora/Views/Post/PostGridView.swift
+++ b/Sora/Views/Post/PostGridView.swift
@@ -3,7 +3,7 @@ import WaterfallGrid
struct PostGridView: View {
@EnvironmentObject var settings: Settings
- @ObservedObject var manager: BooruManager
+ @EnvironmentObject var manager: BooruManager
@Environment(\.isSearching)
private var isSearching
@@ -30,7 +30,6 @@ struct PostGridView: View {
} label: {
PostView(
post: post,
- manager: manager,
posts: filteredPosts
)
}
@@ -39,7 +38,6 @@ struct PostGridView: View {
NavigationLink(value: post) {
PostView(
post: post,
- manager: manager,
posts: filteredPosts
)
}