diff --git a/web/src/components/MemoEditor.tsx b/web/src/components/MemoEditor.tsx index 15ff907b..9eceed63 100644 --- a/web/src/components/MemoEditor.tsx +++ b/web/src/components/MemoEditor.tsx @@ -35,7 +35,6 @@ const setEditingMemoVisibilityCache = (visibility: Visibility) => { interface State { fullscreen: boolean; isUploadingResource: boolean; - shouldShowEmojiPicker: boolean; } const MemoEditor = () => { @@ -49,7 +48,6 @@ const MemoEditor = () => { const [state, setState] = useState({ isUploadingResource: false, fullscreen: false, - shouldShowEmojiPicker: false, }); const [allowSave, setAllowSave] = useState(false); const editorState = editorStore.state;