1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-12 14:34:02 +00:00

fix setting toggle

This commit is contained in:
William Martin
2024-11-06 15:56:29 -05:00
parent e289d0e03b
commit 9e199f65d0

View File

@@ -117,7 +117,7 @@ export class AppearanceV2Component implements OnInit {
this.appearanceForm.controls.compactMode.valueChanges
.pipe(takeUntilDestroyed(this.destroyRef))
.subscribe((compactMode) => {
this.designSystemService.compactMode.set(true);
this.designSystemService.compactMode.set(compactMode);
});
}