diff --git a/web/src/components/MemoEditor/Editor/index.tsx b/web/src/components/MemoEditor/Editor/index.tsx index d801d222c..6cce83cc9 100644 --- a/web/src/components/MemoEditor/Editor/index.tsx +++ b/web/src/components/MemoEditor/Editor/index.tsx @@ -181,6 +181,11 @@ const Editor = forwardRef(function Editor(props: EditorProps, ref: React.Forward isInIME, }); + // Recalculate editor height when focus mode changes + useEffect(() => { + updateEditorHeight(); + }, [isFocusMode, updateEditorHeight]); + return (