From f0673dd16e1d5784c66b8fabae3121fb725ac028 Mon Sep 17 00:00:00 2001 From: Jared Snider <116684653+JaredSnider-Bitwarden@users.noreply.github.com> Date: Fri, 28 Jun 2024 16:30:05 -0400 Subject: [PATCH] PM-4950 - Fix hint and verify delete components that had the data in the wrong place (#9877) --- apps/web/src/app/oss-routing.module.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/apps/web/src/app/oss-routing.module.ts b/apps/web/src/app/oss-routing.module.ts index dee6228530b..9e769fe0630 100644 --- a/apps/web/src/app/oss-routing.module.ts +++ b/apps/web/src/app/oss-routing.module.ts @@ -321,28 +321,28 @@ const routes: Routes = [ { path: "verify-recover-delete", canActivate: [unauthGuardFn()], + data: { + pageTitle: "deleteAccount", + titleId: "deleteAccount", + } satisfies DataProperties & AnonLayoutWrapperData, children: [ { path: "", component: VerifyRecoverDeleteComponent, - data: { - pageTitle: "deleteAccount", - titleId: "deleteAccount", - } satisfies DataProperties & AnonLayoutWrapperData, }, ], }, { path: "hint", canActivate: [unauthGuardFn()], + data: { + pageTitle: "passwordHint", + titleId: "passwordHint", + } satisfies DataProperties & AnonLayoutWrapperData, children: [ { path: "", component: HintComponent, - data: { - pageTitle: "passwordHint", - titleId: "passwordHint", - } satisfies DataProperties & AnonLayoutWrapperData, }, { path: "",