fixing circles for status showing black and covering.

This commit is contained in:
talksik
2021-12-29 22:05:34 -08:00
parent 5a5e49b0a1
commit c559a25f29
2 changed files with 4 additions and 4 deletions
@@ -42,9 +42,9 @@ struct CircleFooterView: View {
.frame(width: 10, height: 10)
.foregroundColor(Color.green)
case .offline:
Circle()
EmptyView()
default:
Circle()
EmptyView()
}
}
.padding(5)
@@ -103,9 +103,9 @@ struct CircleNavigationView: View {
.frame(width: 10, height: 10)
.foregroundColor(Color.green)
case .offline:
Circle()
EmptyView()
default:
Circle()
EmptyView()
}
}
}