From c415beb653b16d87e6ea6f989550cce3a494dac3 Mon Sep 17 00:00:00 2001 From: John Harrington <84741727+harr1424@users.noreply.github.com> Date: Mon, 16 Feb 2026 15:53:46 -0700 Subject: [PATCH] add password specific header (#18988) --- .../src/app/tools/send/send-access/send-auth.component.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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" }, + }); } } }