From f2c66ebcf61eee7783c1457825452df599eb4dba Mon Sep 17 00:00:00 2001 From: Thomas Tracy Date: Wed, 30 Mar 2022 10:34:54 -0400 Subject: [PATCH] fix: disable emoticons to prevent messages from being cut off (#31) --- src/components/bulk-email-tool/text-editor/TextEditor.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/bulk-email-tool/text-editor/TextEditor.jsx b/src/components/bulk-email-tool/text-editor/TextEditor.jsx index c1df6c2..249f4a8 100644 --- a/src/components/bulk-email-tool/text-editor/TextEditor.jsx +++ b/src/components/bulk-email-tool/text-editor/TextEditor.jsx @@ -33,9 +33,9 @@ export default function TextEditor(props) { height: 600, branding: false, menubar: 'edit view insert format table tools', - plugins: 'advlist code emoticons link lists table image language codesample', + plugins: 'advlist code link lists table image language codesample', toolbar: - 'formatselect fontselect bold italic underline forecolor | codesample bullist numlist alignleft aligncenter alignright alignjustify indent | blockquote link emoticons image code| language', + 'formatselect fontselect bold italic underline forecolor | codesample bullist numlist alignleft aligncenter alignright alignjustify indent | blockquote link image code | language', skin: false, content_css: false, content_style: `${contentUiCss.toString()}\n${contentCss.toString()}`,