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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

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) {}