This commit is contained in:
Evgeny Poberezkin
2025-07-21 10:38:32 +01:00
parent 372231bb14
commit fc3a2e0b6e
+2 -3
View File
@@ -831,8 +831,7 @@ struct ChatView: View {
let fullName = chat.chatInfo.fullName.trimmingCharacters(in: .whitespacesAndNewlines)
if fullName != "" && fullName != chat.chatInfo.displayName && fullName != chat.chatInfo.displayName.trimmingCharacters(in: .whitespacesAndNewlines) {
Text(chat.chatInfo.fullName)
.font(.headline)
.fontWeight(.regular)
.font(.subheadline)
.multilineTextAlignment(.center)
.lineLimit(3)
.fixedSize(horizontal: false, vertical: true)
@@ -850,7 +849,7 @@ struct ChatView: View {
if let chatContext = chatContext() {
Label(chatContext, systemImage: "info.circle")
.font(.subheadline)
.font(.callout)
.foregroundColor(theme.colors.secondary)
.padding(.top, 8)
}