Remove circle from DM's

This commit is contained in:
Garth Vander Houwen 2023-04-01 02:49:01 -07:00
parent e10c2e94b2
commit 7abe9bfc8e

View file

@ -57,11 +57,6 @@ struct UserMessageList: View {
}
HStack(alignment: .top) {
if currentUser { Spacer(minLength: 50) }
if !currentUser {
CircleText(text: message.fromUser?.shortName ?? "????", color: currentUser ? .accentColor : Color(.gray), circleSize: 44, fontSize: 14)
.padding(.all, 5)
.offset(y: -5)
}
VStack(alignment: currentUser ? .trailing : .leading) {
let markdownText: LocalizedStringKey = LocalizedStringKey.init(message.messagePayloadMarkdown ?? (message.messagePayload ?? "EMPTY MESSAGE"))