Switch to broken key icon for key match

This commit is contained in:
Garth Vander Houwen 2024-08-14 03:52:20 -07:00
parent affdd39542
commit 1fdbd5cc3a
2 changed files with 1 additions and 3 deletions

View file

@ -75,7 +75,7 @@ struct UserList: View {
if user.pkiEncrypted {
if !user.keyMatch {
/// Public Key on the User and the Public Key on the Last Message don't match
Image(systemName: "lock.slash.fill")
Image(systemName: "key.slash")
.foregroundColor(.red)
} else {
Image(systemName: "lock.fill")

View file

@ -145,7 +145,6 @@ struct NodeListItem: View {
HStack {
Image(systemName: "\(node.channel).circle.fill")
.font(.title2)
.symbolRenderingMode(.multicolor)
.frame(width: 30)
Text("Channel")
.foregroundColor(.secondary)
@ -216,7 +215,6 @@ struct NodeListItem: View {
.font(UIDevice.current.userInterfaceIdiom == .phone ? .callout : .caption)
Image(systemName: "\(node.hopsAway).square")
.font(.title2)
.symbolRenderingMode(.multicolor)
}
} else {
if node.snr != 0 && !node.viaMqtt {