Skip to content

Commit

Permalink
Merge pull request #783 from gsbernstein/fix-xcode-16.2
Browse files Browse the repository at this point in the history
Fix for xcode 16.1: using unsupported binding
  • Loading branch information
leits authored Dec 21, 2024
2 parents 25d2184 + a4cbbfe commit 2bae0b4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion MeetingBar/Views/Shared.swift
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,12 @@ struct JoinEventNotificationPicker: View {
@Default(.joinEventNotification) var joinEventNotification
@Default(.joinEventNotificationTime) var joinEventNotificationTime

let (noAlertStyle, disabled) = checkNotificationSettings()
let noAlertStyle: Bool
let disabled: Bool

init() {
(noAlertStyle, disabled) = checkNotificationSettings()
}

var body: some View {
HStack {
Expand Down

0 comments on commit 2bae0b4

Please sign in to comment.