Skip to content

Commit 42717a0

Browse files
committed
Codeformat fixes
1 parent ef23060 commit 42717a0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

MeetingBar/AppStore.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import Foundation
1111
import Defaults
1212
import SwiftyStoreKit
1313

14-
struct PatronageProducts {
14+
enum PatronageProducts {
1515
static let threeMonth = "leits.MeetingBar.patronage.3Month"
1616
static let sixMonth = "leits.MeetingBar.patronage.6Month"
1717
static let twelveMonth = "leits.MeetingBar.patronage.12Month"

MeetingBar/Views/Preferences/CalendarsTab.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ struct CalendarRow: View {
137137
.onAppear {
138138
isSelected = Defaults[.selectedCalendarIDs].contains(calendar.ID)
139139
}
140-
.onReceive([self.isSelected].publisher.first()) { newValue in
140+
.onReceive([isSelected].publisher.first()) { newValue in
141141
if newValue {
142142
Defaults[.selectedCalendarIDs].append(calendar.ID)
143143
} else {

0 commit comments

Comments
 (0)