We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a120397 commit ca39fc3Copy full SHA for ca39fc3
Loop/Extensions/UIAlertController.swift
@@ -103,7 +103,7 @@ extension UIAlertController {
103
preferredStyle: .actionSheet
104
)
105
106
- for availableCGMManager in availableCGMManagers {
+ for availableCGMManager in availableCGMManagers.sorted(by: {$0.localizedTitle < $1.localizedTitle}) {
107
addAction(UIAlertAction(
108
title: availableCGMManager.localizedTitle,
109
style: .default,
0 commit comments