From 8d8cf53ac4fbdb8d3df3c5d7336e7f3120ab0a91 Mon Sep 17 00:00:00 2001 From: ewwwwwwww Date: Mon, 4 Jul 2022 20:45:22 -0700 Subject: [PATCH] remove console log --- app/soapbox/reducers/compose.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/app/soapbox/reducers/compose.ts b/app/soapbox/reducers/compose.ts index 9bc87760d..4912fd03f 100644 --- a/app/soapbox/reducers/compose.ts +++ b/app/soapbox/reducers/compose.ts @@ -221,7 +221,6 @@ const updateSuggestionTags = (state: State, token: string) => { const insertEmoji = (state: State, position: number, emojiData: Emoji, needsSpace: boolean) => { const oldText = state.text; - console.log(emojiData); const emojiText = isNativeEmoji(emojiData) ? emojiData.native : emojiData.colons; const emoji = needsSpace ? ' ' + emojiText : emojiText;