1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-27 14:53:44 +00:00

Lint fixes

This commit is contained in:
Colton Hurst
2026-01-23 15:23:51 -05:00
parent fe619dd9b3
commit 66bfcba2ec

View File

@@ -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() {