diff --git a/Seattle Bridge Tracker/Notification Preferences/NotificationPreferencesBody.swift b/Seattle Bridge Tracker/Notification Preferences/NotificationPreferencesBody.swift index 9e0d31d..f17ac75 100644 --- a/Seattle Bridge Tracker/Notification Preferences/NotificationPreferencesBody.swift +++ b/Seattle Bridge Tracker/Notification Preferences/NotificationPreferencesBody.swift @@ -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) }