Remove unnecessary curly braces

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-07-27 18:46:19 +02:00
parent 9761c38f3d
commit 5f6a1e336e
No known key found for this signature in database
GPG Key ID: 55C211A1226CB17D
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ export default class LabsUserSettingsTab extends React.Component {
let hiddenReadReceipts; let hiddenReadReceipts;
if (this.state.showHiddenReadReceipts) { if (this.state.showHiddenReadReceipts) {
hiddenReadReceipts = ( hiddenReadReceipts = (
<SettingsFlag name={"sendReadReceipts"} level={SettingLevel.ACCOUNT} /> <SettingsFlag name="sendReadReceipts" level={SettingLevel.ACCOUNT} />
); );
} }