ContentView: handle new .meshReachable connection state in header icon switch (exhaustive switch fix)

This commit is contained in:
jack
2025-08-26 02:13:33 +02:00
parent acfce858ec
commit 92a0204368
+6
View File
@@ -1247,6 +1247,12 @@ struct ContentView: View {
.font(.system(size: 14)) .font(.system(size: 14))
.foregroundColor(textColor) .foregroundColor(textColor)
.accessibilityLabel("Connected via mesh") .accessibilityLabel("Connected via mesh")
case .meshReachable:
// Antenna icon for reachable via mesh (not directly connected)
Image(systemName: "antenna.radiowaves.left.and.right")
.font(.system(size: 14))
.foregroundColor(textColor)
.accessibilityLabel("Reachable via mesh")
case .nostrAvailable: case .nostrAvailable:
// Purple globe for Nostr // Purple globe for Nostr
Image(systemName: "globe") Image(systemName: "globe")