1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-02 01:33:22 +00:00

Undo type check

This commit is contained in:
Bernd Schoolmann
2025-10-30 11:05:42 +01:00
parent eaad30f98a
commit 169dccac17

View File

@@ -251,9 +251,7 @@ export class PasswordLoginStrategy extends LoginStrategy {
this.cache.next(data);
const [authResult] = await this.startLogIn();
if (this.cache.value instanceof PasswordLoginStrategyData) {
authResult.masterPassword = this.cache.value["masterPassword"] ?? null;
}
authResult.masterPassword = this.cache.value["masterPassword"] ?? null;
return authResult;
}