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 d9aff26 commit 049cec3Copy full SHA for 049cec3
1 file changed
Loop/Migration/Migrator.swift
@@ -219,13 +219,6 @@ private extension Migrator {
219
220
// Handle nested cycle actions if present
221
if var cycle = actions[i]["cycle"] as? [[String: Any]] {
222
- // Sort the cycle actions by direction
223
- cycle.sort { first, second -> Bool in
224
- let firstDir = first["direction"] as? String ?? ""
225
- let secondDir = second["direction"] as? String ?? ""
226
- return firstDir < secondDir
227
- }
228
-
229
// For each action in the cycle
230
for j in 0 ..< cycle.count {
231
// Sort the keybind array in each cycle action
0 commit comments