remove ll feature flag, it's time!

This commit is contained in:
Bruno Windels 2019-02-07 18:24:07 +00:00
parent b50bfa1eda
commit ac4ab11985
4 changed files with 1 additions and 51 deletions

View file

@ -53,13 +53,6 @@ export class LabsSettingToggle extends React.Component {
}
_onChange = async (checked) => {
if (this.props.featureId === "feature_lazyloading") {
const confirmed = await this._onLazyLoadChanging(checked);
if (!confirmed) {
return;
}
}
await SettingsStore.setFeatureEnabled(this.props.featureId, checked);
this.forceUpdate();
};