Don't double translate labs settings

SettingsStore.getDisplayName() already calls _t() for us.

Fixes https://github.com/vector-im/riot-web/issues/10586
pull/21833/head
Travis Ralston 2019-08-21 08:55:19 -06:00
parent c7c87ccd9c
commit 5bf0587cc5
1 changed files with 1 additions and 1 deletions

View File

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