1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-12 06:23:38 +00:00

remove debugging tools

This commit is contained in:
Jimmy Vo
2024-12-13 17:22:17 -05:00
parent dac38832d3
commit 749c178826

View File

@@ -177,9 +177,7 @@ export class MemberDialogComponent implements OnDestroy {
.pipe(shareReplay({ refCount: true, bufferSize: 1 }));
let userDetails$;
console.log("jimmy 1");
if (this.isEditDialogParams(this.params)) {
console.log("jimmy 2");
this.editMode = true;
this.title = this.i18nService.t("editMember");
userDetails$ = this.userService.get(
@@ -188,7 +186,6 @@ export class MemberDialogComponent implements OnDestroy {
);
this.tabIndex = this.params.initialTab;
} else {
console.log("jimmy 3");
this.editMode = false;
this.title = this.i18nService.t("inviteMember");
userDetails$ = of(null);
@@ -197,7 +194,6 @@ export class MemberDialogComponent implements OnDestroy {
this.isOnSecretsManagerStandalone = this.params.isOnSecretsManagerStandalone;
console.log("jimmy 4");
if (this.isOnSecretsManagerStandalone) {
this.formGroup.patchValue({
accessSecretsManager: true,