Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
eslint error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yaya-usman committed Jul 21, 2022
1 parent c5e982f commit fa57742
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/views/rooms/RoomSublist.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ export default class RoomSublist extends React.Component<IProps, IState> {
}

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) {
Expand Down

0 comments on commit fa57742

Please sign in to comment.