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

Commit ed910bb

Browse files
committed
Remove parenthesis change
1 parent a50e011 commit ed910bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/components/structures/RoomStatusBar.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ export default class RoomStatusBar extends React.PureComponent<IProps, IState> {
211211
this.state.syncStateData.error &&
212212
this.state.syncStateData.error.name === 'M_RESOURCE_LIMIT_EXCEEDED',
213213
);
214-
return (this.state.syncState === "ERROR" && !errorIsMauError);
214+
return this.state.syncState === "ERROR" && !errorIsMauError;
215215
}
216216

217217
private getUnsentMessageContent(): JSX.Element {

0 commit comments

Comments
 (0)