diff --git a/src/features/compose/editor/plugins/autosuggest-plugin.tsx b/src/features/compose/editor/plugins/autosuggest-plugin.tsx index aa42ff306..24a9f2627 100644 --- a/src/features/compose/editor/plugins/autosuggest-plugin.tsx +++ b/src/features/compose/editor/plugins/autosuggest-plugin.tsx @@ -342,11 +342,6 @@ const AutosuggestPlugin = ({ if (!node) return null; - if (['hashtag'].includes(node.getType())) { - const matchingString = node.getTextContent(); - return { leadOffset: 0, matchingString }; - } - if (node.getType() === 'text') { const [leadOffset, matchingString] = textAtCursorMatchesToken( node.getTextContent(),