Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโ€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PM-17088] Prevent lock component init when switching to unlocked account #12875

Merged
merged 1 commit into from
Jan 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,10 @@
if (activeAccount == null) {
return;
}
// this account may be unlocked, prevent any prompts so we can redirect to vault
if (await this.keyService.hasUserKeyInMemory(activeAccount.id)) {
return;

Check warning on line 249 in libs/key-management/src/angular/lock/components/lock.component.ts

View check run for this annotation

Codecov / codecov/patch

libs/key-management/src/angular/lock/components/lock.component.ts#L249

Added line #L249 was not covered by tests
}

this.setEmailAsPageSubtitle(activeAccount.email);

Expand Down
Loading