diff --git a/Session/Conversations/ConversationVC+Interaction.swift b/Session/Conversations/ConversationVC+Interaction.swift index e299ffc67..6a55dd5e0 100644 --- a/Session/Conversations/ConversationVC+Interaction.swift +++ b/Session/Conversations/ConversationVC+Interaction.swift @@ -825,12 +825,10 @@ extension ConversationVC : InputViewDelegate, MessageCellDelegate, ContextMenuAc } func quickReact(_ viewItem: ConversationViewItem, with emoji: String) { - print("Ryan Test: Quick react with \(emoji)") react(viewItem, with: emoji) } func cancelReact(_ viewItem: ConversationViewItem, for emoji: String) { - print("Ryan Test: Cancel react for \(emoji)") react(viewItem, with: emoji, cancel: true) } diff --git a/Session/Conversations/Message Cells/VisibleMessageCell.swift b/Session/Conversations/Message Cells/VisibleMessageCell.swift index 18480d2d4..0c387c5d9 100644 --- a/Session/Conversations/Message Cells/VisibleMessageCell.swift +++ b/Session/Conversations/Message Cells/VisibleMessageCell.swift @@ -540,7 +540,6 @@ final class VisibleMessageCell : MessageCell, LinkPreviewViewDelegate { for reactionView in reactionContainerView.reactionViews { if reactionView.frame.contains(convertedLocation) { // TODO: Show react list - print("Ryan Test: long press on emoji.") break } }