1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 00:03:56 +00:00

add back env selector to 2fa (#9701)

This commit is contained in:
Jake Fink
2024-06-17 17:25:58 -04:00
committed by GitHub
parent 0c6e296dc3
commit 8440759602

View File

@@ -258,11 +258,21 @@ const routes: Routes = [
}, },
{ {
path: "2fa", path: "2fa",
component: TwoFactorComponent,
canActivate: [unauthGuardFn()], canActivate: [unauthGuardFn()],
children: [
{
path: "",
component: TwoFactorComponent,
},
{
path: "",
component: EnvironmentSelectorComponent,
outlet: "environment-selector",
},
],
data: { data: {
pageTitle: "verifyIdentity", pageTitle: "verifyIdentity",
}, } satisfies DataProperties & AnonLayoutWrapperData,
}, },
{ {
path: "recover-2fa", path: "recover-2fa",