We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef23060 commit 42717a0Copy full SHA for 42717a0
2 files changed
MeetingBar/AppStore.swift
@@ -11,7 +11,7 @@ import Foundation
11
import Defaults
12
import SwiftyStoreKit
13
14
-struct PatronageProducts {
+enum PatronageProducts {
15
static let threeMonth = "leits.MeetingBar.patronage.3Month"
16
static let sixMonth = "leits.MeetingBar.patronage.6Month"
17
static let twelveMonth = "leits.MeetingBar.patronage.12Month"
MeetingBar/Views/Preferences/CalendarsTab.swift
@@ -137,7 +137,7 @@ struct CalendarRow: View {
137
.onAppear {
138
isSelected = Defaults[.selectedCalendarIDs].contains(calendar.ID)
139
}
140
- .onReceive([self.isSelected].publisher.first()) { newValue in
+ .onReceive([isSelected].publisher.first()) { newValue in
141
if newValue {
142
Defaults[.selectedCalendarIDs].append(calendar.ID)
143
} else {
0 commit comments