We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8adc3fb commit ede034bCopy full SHA for ede034b
src/components/settingsPage.js
@@ -253,7 +253,6 @@ function normalizeSettings(settings) {
253
return false;
254
}
255
256
- ensureSettingInfo(setting);
257
return true;
258
});
259
@@ -263,16 +262,6 @@ function normalizeSettings(settings) {
263
262
};
264
265
266
-function ensureSettingInfo(setting) {
267
- if (setting.info) return;
268
-
269
- Object.defineProperty(setting, "info", {
270
- get() {
271
- return strings[`info-${this.key.toLocaleLowerCase()}`];
272
- },
273
- });
274
-}
275
276
function shouldEnableSearch(type, settingsCount) {
277
return type === "united" || (type === "separate" && settingsCount > 5);
278
0 commit comments