Skip to content

Commit

Permalink
made notification priority picker ios 15+ only
Browse files Browse the repository at this point in the history
  • Loading branch information
Mcrich23 committed Jun 12, 2023
1 parent f0583bd commit 3236ea2
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,9 @@ struct NotificationPreferencesBody: View {
.padding(.bottom)
NotificationPreferenceDaysPicker(preference: $preference)
NotificationPreferencesTimePicker(preference: $preference)
NotificationPreferencesImportance(preference: $preference)
if #available(iOS 15, *) {
NotificationPreferencesImportance(preference: $preference)
}
NotificationPreferencesSelectedBridges(preference: $preference)
NotificationPreferencesActiveToggle(preference: $preference)
}
Expand Down

0 comments on commit 3236ea2

Please sign in to comment.