diff --git a/apps/web/src/app/tools/send/send-access/send-auth.component.ts b/apps/web/src/app/tools/send/send-access/send-auth.component.ts index 22ab04bd9dd..8c630ce5315 100644 --- a/apps/web/src/app/tools/send/send-access/send-auth.component.ts +++ b/apps/web/src/app/tools/send/send-access/send-auth.component.ts @@ -73,7 +73,6 @@ export class SendAuthComponent implements OnInit { ) {} ngOnInit() { - this.updatePageTitle(); void this.onSubmit(); } @@ -226,6 +225,10 @@ export class SendAuthComponent implements OnInit { pageTitle: { key: "verifyYourEmailToViewThisSend" }, }); } + } else if (authType === AuthType.Password) { + this.anonLayoutWrapperDataService.setAnonLayoutWrapperData({ + pageTitle: { key: "sendAccessPasswordTitle" }, + }); } } }