diff --git a/packages/web/src/javascripts/Components/SuperEditor/Plugins/ToolbarPlugin/ToolbarPlugin.tsx b/packages/web/src/javascripts/Components/SuperEditor/Plugins/ToolbarPlugin/ToolbarPlugin.tsx index 6b97c2067..544293026 100644 --- a/packages/web/src/javascripts/Components/SuperEditor/Plugins/ToolbarPlugin/ToolbarPlugin.tsx +++ b/packages/web/src/javascripts/Components/SuperEditor/Plugins/ToolbarPlugin/ToolbarPlugin.tsx @@ -504,7 +504,7 @@ const ToolbarPlugin = () => { const [isFocusInEditor, setIsFocusInEditor] = useState(false) const [isFocusInToolbar, setIsFocusInToolbar] = useState(false) - const canShowToolbarOnMobile = true + const canShowToolbarOnMobile = isFocusInEditor || isFocusInToolbar const canShowAllItems = isMobile || isToolbarFixedToTop useEffect(() => {