This commit is contained in:
Maurice Parker
2020-07-11 12:48:58 -05:00
2 changed files with 12 additions and 2 deletions

View File

@@ -135,7 +135,7 @@ struct AddWebFeedView: View {
HStack(alignment: .top) {
if let image = viewModel.smallIconImage(for: viewModel.containers[index]) {
Image(rsImage: image)
.foregroundColor(.accentColor)
.foregroundColor(Color("AccentColor"))
}
Text("\(containerName)")
.tag(index)
@@ -144,7 +144,7 @@ struct AddWebFeedView: View {
HStack(alignment: .top) {
if let image = viewModel.smallIconImage(for: viewModel.containers[index]) {
Image(rsImage: image)
.foregroundColor(.accentColor)
.foregroundColor(Color("AccentColor"))
}
Text(containerName)
.tag(index)