Explorar el Código

Whitespace changes

- Xcode insists on adding these, every build (even after removing them)
- Adding them in so others don't experience the same continuous changing
Auggie Fisher hace 1 año
padre
commit
a0555abc95

+ 1 - 1
FreeAPS/Sources/Models/FreeAPSSettings.swift

@@ -327,7 +327,7 @@ extension FreeAPSSettings: Decodable {
         if let lockScreenView = try? container.decode(LockScreenView.self, forKey: .lockScreenView) {
             settings.lockScreenView = lockScreenView
         }
-        
+
         if let bolusShortcut = try? container.decode(BolusShortcutLimit.self, forKey: .bolusShortcut) {
             settings.bolusShortcut = bolusShortcut
         }

+ 0 - 1
FreeAPS/Sources/Router/Screen.swift

@@ -36,7 +36,6 @@ enum Screen: Identifiable, Hashable {
     case calibrations
     case shortcutsConfig
 
-
     var id: Int { String(reflecting: self).hashValue }
 }