This commit is contained in:
spaced4ndy
2026-07-07 15:20:27 +04:00
parent 7af0f00eac
commit 323af80ea6
3 changed files with 3 additions and 7 deletions
@@ -148,7 +148,7 @@ func ciMetaText(
space = textSpace
}
if meta.msgSigned == .verified {
r = r + colored(Text(Image("signature.plain")).font(.caption.weight(.ultraLight)), resolved)
r = r + colored(Text(Image("signature.plain")), resolved)
space = textSpace
}
if showTimesamp {
@@ -168,7 +168,7 @@ struct ChatItemInfoView: View {
Label {
Text(signedText)
} icon: {
Text(Image("signature.plain")).fontWeight(.ultraLight).foregroundColor(.secondary)
Text(Image("signature.plain")).foregroundColor(.secondary)
}
Spacer()
}
@@ -250,11 +250,7 @@ struct SendMessageView: View {
Button {
startSignedMessage()
} label: {
Label {
Text("Sign message")
} icon: {
Image("signature.plain").font(.body.weight(.ultraLight))
}
Label("Sign message", image: "signature.plain")
}
}
}