Appease the linter

This commit is contained in:
Travis Ralston 2019-01-23 20:26:00 -07:00
parent 06a9ab3a70
commit a9243cf851
2 changed files with 2 additions and 2 deletions

View file

@ -67,7 +67,7 @@ export class LabsSettingToggle extends React.Component {
render() {
const label = _t(SettingsStore.getDisplayName(this.props.featureId));
const value = SettingsStore.isFeatureEnabled(this.props.featureId);
return <LabelledToggleSwitch value={value} label={label} onChange={this._onChange} />
return <LabelledToggleSwitch value={value} label={label} onChange={this._onChange} />;
}
}

View file

@ -34,4 +34,4 @@ export default class NotificationSettingsTab extends React.Component {
</div>
);
}
}
}