diff --git a/apps/dotcom/src/utils/context-menu/CursorChatMenuItem.tsx b/apps/dotcom/src/utils/context-menu/CursorChatMenuItem.tsx index 5a6872d56..b51b2fdb2 100644 --- a/apps/dotcom/src/utils/context-menu/CursorChatMenuItem.tsx +++ b/apps/dotcom/src/utils/context-menu/CursorChatMenuItem.tsx @@ -6,9 +6,7 @@ export function CursorChatMenuItem() { const actions = useActions() const shouldShow = useValue( 'show cursor chat', - () => { - return !editor.getInstanceState().isCoarsePointer - }, + () => editor.getCurrentToolId() === 'select' && !editor.getInstanceState().isCoarsePointer, [editor] )