diff --git a/src/components/views/rooms/RoomSublist.tsx b/src/components/views/rooms/RoomSublist.tsx index 8e52cacf9b1..a70a9173c36 100644 --- a/src/components/views/rooms/RoomSublist.tsx +++ b/src/components/views/rooms/RoomSublist.tsx @@ -553,6 +553,8 @@ export default class RoomSublist extends React.Component { } private renderMenu(): React.ReactElement { + if (this.props.tagId === DefaultTagID.Suggested) return null; // not sortable + let contextMenu = null; if (this.state.contextMenuPosition) { const isAlphabetical = RoomListStore.instance.getTagSorting(this.props.tagId) === SortAlgorithm.Alphabetic;