From f8bd30a5f7354950ebb58928db87b61065dd11f7 Mon Sep 17 00:00:00 2001 From: ewwwwwwww Date: Sat, 25 Jun 2022 21:08:44 -0700 Subject: [PATCH] remove consolelog --- app/soapbox/reducers/compose.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/soapbox/reducers/compose.ts b/app/soapbox/reducers/compose.ts index d56307a25..3b861fb58 100644 --- a/app/soapbox/reducers/compose.ts +++ b/app/soapbox/reducers/compose.ts @@ -222,8 +222,6 @@ const insertEmoji = (state: State, position: number, emojiData: Emoji, needsSpac const oldText = state.text; const emoji = needsSpace ? ' ' + emojiData.native : emojiData.native; - console.log(emojiData, emoji); - return state.merge({ text: `${oldText.slice(0, position)}${emoji} ${oldText.slice(position)}`, focusDate: new Date(),