1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-29 22:53:44 +00:00

claude: takeUntilDestroyed

This commit is contained in:
neuronull
2025-10-29 15:12:39 -06:00
parent 7a5b18e454
commit bb8adb439e

View File

@@ -1,3 +1,4 @@
import { takeUntilDestroyed } from "@angular/core/rxjs-interop";
import {
combineLatest,
concatMap,
@@ -117,6 +118,7 @@ export class DesktopAutotypeService {
await this.setAutotypeEnabledState(true);
}
}),
takeUntilDestroyed(),
)
.subscribe();
@@ -129,6 +131,7 @@ export class DesktopAutotypeService {
};
ipc.autofill.configureAutotype(config);
}),
takeUntilDestroyed(),
)
.subscribe();
@@ -158,6 +161,7 @@ export class DesktopAutotypeService {
ipc.autofill.toggleAutotype(enabled);
}),
takeUntilDestroyed(),
)
.subscribe();
}