1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-08 11:33:28 +00:00

claude: concatMap

This commit is contained in:
neuronull
2025-10-29 15:17:45 -06:00
parent 69107b69d6
commit 3c7f570a7e

View File

@@ -116,7 +116,7 @@ export class DesktopAutotypeService {
this.desktopAutotypePolicy.autotypeDefaultSetting$, this.desktopAutotypePolicy.autotypeDefaultSetting$,
]) ])
.pipe( .pipe(
map(async ([autotypeEnabledState, autotypeDefaultPolicy]) => { concatMap(async ([autotypeEnabledState, autotypeDefaultPolicy]) => {
try { try {
if (autotypeDefaultPolicy === true && autotypeEnabledState === null) { if (autotypeDefaultPolicy === true && autotypeEnabledState === null) {
await this.setAutotypeEnabledState(true); await this.setAutotypeEnabledState(true);