Fix incorrect user display name label color on dark mode

This commit is contained in:
Stefan Ceriu 2022-06-08 13:59:25 +03:00
parent 54f5493e76
commit 4b67d5d2a9

View File

@ -95,7 +95,7 @@ struct HomeScreen: View {
Text("Hello, \(displayName)!")
.font(.subheadline)
.fontWeight(.bold)
.foregroundColor(.black)
.foregroundColor(.primary)
}
} else {
EmptyView()