Skip to content

Commit

Permalink
[PM-15613] fix incorrect route transitions (#13316)
Browse files Browse the repository at this point in the history
  • Loading branch information
willmartian authored Feb 17, 2025
1 parent 19a6641 commit 117522f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/browser/src/popup/app-routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ const routes: Routes = [
path: "cipher-password-history",
component: PasswordHistoryV2Component,
canActivate: [authGuard],
data: { elevation: 1 } satisfies RouteDataProperties,
data: { elevation: 4 } satisfies RouteDataProperties,
},
{
path: "add-cipher",
Expand All @@ -310,7 +310,7 @@ const routes: Routes = [
path: "attachments",
component: AttachmentsV2Component,
canActivate: [authGuard],
data: { elevation: 1 } satisfies RouteDataProperties,
data: { elevation: 4 } satisfies RouteDataProperties,
},
{
path: "generator",
Expand Down Expand Up @@ -382,7 +382,7 @@ const routes: Routes = [
path: "premium",
component: PremiumV2Component,
canActivate: [authGuard],
data: { elevation: 1 } satisfies RouteDataProperties,
data: { elevation: 3 } satisfies RouteDataProperties,
},
{
path: "appearance",
Expand Down

0 comments on commit 117522f

Please sign in to comment.