diff --git a/Meshtastic/Views/Settings/Settings.swift b/Meshtastic/Views/Settings/Settings.swift index 5f5d0e2b..8a84f474 100644 --- a/Meshtastic/Views/Settings/Settings.swift +++ b/Meshtastic/Views/Settings/Settings.swift @@ -289,8 +289,12 @@ struct Settings: View { MeshtasticLogo() ) } - detail: { - Text("select.menu.item") - } + detail: { + if #available (iOS 17, *) { + ContentUnavailableView("select.menu.item", systemImage: "gear") + } else { + Text("select.menu.item") + } + } } }