Browse Source

Fix incorrect condition in view

Deniz Cengiz 1 năm trước cách đây
mục cha
commit
a3d0dff413

+ 1 - 1
Trio Watch App Extension/Views/TrioMainWatchView.swift

@@ -36,7 +36,7 @@ struct TrioMainWatchView: View {
             return true // No session at all => unreachable
             return true // No session at all => unreachable
         }
         }
         // Return true if not .activated OR not reachable
         // Return true if not .activated OR not reachable
-        return session.activationState != .activated || !session.isReachable
+        return session.activationState != .activated
     }
     }
 
 
     // Active adjustment indicator
     // Active adjustment indicator