1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 05:13:29 +00:00

enable passkeys option should be set by default (#7835)

This commit is contained in:
SmithThe4th
2024-02-07 09:27:22 -05:00
committed by GitHub
parent b3135403e8
commit 923cac0a96

View File

@@ -15,7 +15,7 @@ export class VaultSettingsService implements VaultSettingsServiceAbstraction {
* {@link VaultSettingsServiceAbstraction.enablePasskeys$}
*/
readonly enablePasskeys$: Observable<boolean> = this.enablePasskeysState.state$.pipe(
map((x) => x ?? false),
map((x) => x ?? true),
);
constructor(private stateProvider: StateProvider) {}