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) .frame(width: 10, height: 10)
.foregroundColor(Color.green) .foregroundColor(Color.green)
case .offline: case .offline:
Circle() EmptyView()
default: default:
Circle() EmptyView()
} }
} }
.padding(5) .padding(5)
@@ -103,9 +103,9 @@ struct CircleNavigationView: View {
.frame(width: 10, height: 10) .frame(width: 10, height: 10)
.foregroundColor(Color.green) .foregroundColor(Color.green)
case .offline: case .offline:
Circle() EmptyView()
default: default:
Circle() EmptyView()
} }
} }
} }