From 66bfcba2ecec79f385e4fda0977a9836a5fecacf Mon Sep 17 00:00:00 2001 From: Colton Hurst Date: Fri, 23 Jan 2026 15:23:51 -0500 Subject: [PATCH] Lint fixes --- apps/desktop/src/app/accounts/settings.component.ts | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/apps/desktop/src/app/accounts/settings.component.ts b/apps/desktop/src/app/accounts/settings.component.ts index d5cd0ff8049..954e2563a1e 100644 --- a/apps/desktop/src/app/accounts/settings.component.ts +++ b/apps/desktop/src/app/accounts/settings.component.ts @@ -313,17 +313,15 @@ export class SettingsComponent implements OnInit, OnDestroy { // Screen Privacy is for Windows initially // TODO: windows only for now, update when done testing - if (true) { - this.showScreenPrivacy = true; - /* + /*if (true) { this.configService .getFeatureFlag$(FeatureFlag.ScreenPrivacy) .pipe(takeUntil(this.destroy$)) .subscribe((enabled) => { this.showScreenPrivacy = enabled; }); - */ - } + }*/ + this.showScreenPrivacy = true; this.userHasMasterPassword = await this.userVerificationService.hasMasterPassword(); @@ -988,7 +986,7 @@ export class SettingsComponent implements OnInit, OnDestroy { async saveScreenPrivacy() { await this.desktopAutofillSettingsService.setScreenPrivacy(this.form.value.screenPrivacy); - console.log("screen privacy updated to: " + this.form.value.screenPrivacy); + // console.log("screen privacy updated to: " + this.form.value.screenPrivacy); } async saveAutotypeShortcut() {