From fa577429a05924ed2165a3c98a543389ad0ad9cf Mon Sep 17 00:00:00 2001 From: yaya-usman Date: Thu, 21 Jul 2022 16:17:36 +0300 Subject: [PATCH] eslint error fix --- src/components/views/rooms/RoomSublist.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/views/rooms/RoomSublist.tsx b/src/components/views/rooms/RoomSublist.tsx index 80b39db4e5..677b63bcf9 100644 --- a/src/components/views/rooms/RoomSublist.tsx +++ b/src/components/views/rooms/RoomSublist.tsx @@ -527,7 +527,7 @@ export default class RoomSublist extends React.Component { } private renderMenu(): React.ReactElement { - if (this.props.tagId === DefaultTagID.Suggested || this.props.tagId === DefaultTagID.SavedItems ) return null; // not sortable + if (this.props.tagId === DefaultTagID.Suggested || this.props.tagId === DefaultTagID.SavedItems) return null; // not sortable let contextMenu = null; if (this.state.contextMenuPosition) {