diff --git a/Session/Conversations/ConversationVC+Interaction.swift b/Session/Conversations/ConversationVC+Interaction.swift index 4be698a05..ff908f43f 100644 --- a/Session/Conversations/ConversationVC+Interaction.swift +++ b/Session/Conversations/ConversationVC+Interaction.swift @@ -353,7 +353,7 @@ extension ConversationVC : InputViewDelegate, MessageCellDelegate, ContextMenuAc guard let currentMentionStartIndex = currentMentionStartIndex else { return } mentions.append(mention) let oldText = snInputView.text - let newText = oldText.replacingCharacters(in: currentMentionStartIndex..., with: "@\(mention.displayName)") + let newText = oldText.replacingCharacters(in: currentMentionStartIndex..., with: "@\(mention.displayName) ") snInputView.text = newText self.currentMentionStartIndex = nil snInputView.hideMentionsUI()