capitalize

This commit is contained in:
Garth Vander Houwen 2025-05-23 23:41:32 -07:00
parent 18ef8890cb
commit b4d4bde3ee

View file

@ -29,7 +29,7 @@ struct MapSettingsForm: View {
Picker(selection: $mapLayer, label: Text("")) {
ForEach(MapLayer.allCases, id: \.self) { layer in
if layer != MapLayer.offline {
Text(layer.localized)
Text(layer.localized.capitalized)
}
}
}