src/app/inbox/inbox-routing.module.ts
import {Routes} from '@angular/router'; export const routes: Routes = [ { loadComponent: () => import('./inbox.component').then((m) => m.InboxComponent), path: '', pathMatch: 'full', title: $localize`Inbox`, },Similar blocks of code found in 33 locations. Consider refactoring. { loadComponent: () => import('./inbox.component').then((m) => m.InboxComponent), path: ':brand', title: $localize`Inbox`, },Similar blocks of code found in 33 locations. Consider refactoring. { loadComponent: () => import('./inbox.component').then((m) => m.InboxComponent), path: ':brand/:date', title: $localize`Inbox`, },];