summaryrefslogtreecommitdiff
path: root/Hutch/Views/Projects/ProjectDetailView.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Hutch/Views/Projects/ProjectDetailView.swift')
-rw-r--r--Hutch/Views/Projects/ProjectDetailView.swift4
1 files changed, 2 insertions, 2 deletions
diff --git a/Hutch/Views/Projects/ProjectDetailView.swift b/Hutch/Views/Projects/ProjectDetailView.swift
index 11758ae..dc8b24d 100644
--- a/Hutch/Views/Projects/ProjectDetailView.swift
+++ b/Hutch/Views/Projects/ProjectDetailView.swift
@@ -22,7 +22,7 @@ struct ProjectDetailView: View {
private var isPinnedToHome: Bool {
_ = pinChangeCount
guard let currentUserKey else { return false }
- return ProjectPinStore.isPinned(projectID: displayedProject.id, for: currentUserKey)
+ return ProjectPinStore.isPinned(projectID: displayedProject.id, for: currentUserKey, defaults: appState.accountDefaults)
}
var body: some View {
@@ -243,7 +243,7 @@ struct ProjectDetailView: View {
private func togglePinnedState() {
guard let currentUserKey else { return }
- ProjectPinStore.togglePin(projectID: displayedProject.id, for: currentUserKey)
+ ProjectPinStore.togglePin(projectID: displayedProject.id, for: currentUserKey, defaults: appState.accountDefaults)
pinChangeCount += 1
}