1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-29 22:53:44 +00:00

claude: remove of(false) on observable initializing

This commit is contained in:
neuronull
2025-11-07 10:21:14 -07:00
parent 6c52f57cd1
commit 6a5b702dcf

View File

@@ -69,10 +69,10 @@ export class DesktopAutotypeService implements OnDestroy {
);
// if the user's account is Premium
private readonly isPremiumAccount$: Observable<boolean> = of(false);
private readonly isPremiumAccount$: Observable<boolean>;
// The enabled/disabled state from the user settings menu
autotypeEnabledUserSetting$: Observable<boolean> = of(false);
autotypeEnabledUserSetting$: Observable<boolean>;
// The keyboard shortcut from the user settings menu
autotypeKeyboardShortcut$: Observable<string[]> = of(defaultWindowsAutotypeKeyboardShortcut);