mirror of
https://github.com/bitwarden/browser
synced 2026-02-10 05:30:01 +00:00
Fix bug preventing password login
This commit is contained in:
@@ -1 +1,4 @@
|
||||
// TODO: add tests for OpaqueLoginStrategy once it is implemented
|
||||
describe("OpaqueLoginStrategy", () => {
|
||||
it.todo("Write me!");
|
||||
});
|
||||
|
||||
@@ -237,7 +237,7 @@ export class LoginStrategyService implements LoginStrategyServiceAbstraction {
|
||||
ownedCredentials = { ...credentials };
|
||||
}
|
||||
|
||||
await this.currentAuthnTypeState.update((_) => credentials.type);
|
||||
await this.currentAuthnTypeState.update((_) => ownedCredentials.type);
|
||||
|
||||
const strategy = await firstValueFrom(this.loginStrategy$);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user