Skip to content

Commit

Permalink
Codeformat fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
leits committed Jan 22, 2024
1 parent ef23060 commit 42717a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MeetingBar/AppStore.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import Foundation
import Defaults
import SwiftyStoreKit

struct PatronageProducts {
enum PatronageProducts {
static let threeMonth = "leits.MeetingBar.patronage.3Month"
static let sixMonth = "leits.MeetingBar.patronage.6Month"
static let twelveMonth = "leits.MeetingBar.patronage.12Month"
Expand Down
2 changes: 1 addition & 1 deletion MeetingBar/Views/Preferences/CalendarsTab.swift
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ struct CalendarRow: View {
.onAppear {
isSelected = Defaults[.selectedCalendarIDs].contains(calendar.ID)
}
.onReceive([self.isSelected].publisher.first()) { newValue in
.onReceive([isSelected].publisher.first()) { newValue in
if newValue {
Defaults[.selectedCalendarIDs].append(calendar.ID)
} else {
Expand Down

0 comments on commit 42717a0

Please sign in to comment.