Merge pull request #904 from meshtastic/ack-error-fontsize

Ack error font
This commit is contained in:
Garth Vander Houwen 2024-08-29 09:34:32 -07:00 committed by GitHub
commit 5cf6443f9d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -84,6 +84,7 @@ struct UserMessageList: View {
} else if currentUser && message.ackError > 0 {
Text("\(ackErrorVal?.display ?? "Empty Ack Error")").fixedSize(horizontal: false, vertical: true)
.foregroundStyle(ackErrorVal?.color ?? Color.red)
.font(.caption2)
}
}
}