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

Commit

Permalink
Remove parenthesis change
Browse files Browse the repository at this point in the history
  • Loading branch information
MadLittleMods committed Apr 14, 2022
1 parent a50e011 commit ed910bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/structures/RoomStatusBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ export default class RoomStatusBar extends React.PureComponent<IProps, IState> {
this.state.syncStateData.error &&
this.state.syncStateData.error.name === 'M_RESOURCE_LIMIT_EXCEEDED',
);
return (this.state.syncState === "ERROR" && !errorIsMauError);
return this.state.syncState === "ERROR" && !errorIsMauError;
}

private getUnsentMessageContent(): JSX.Element {
Expand Down

0 comments on commit ed910bb

Please sign in to comment.