diff --git a/src/app/features/preprints/preprints.routes.ts b/src/app/features/preprints/preprints.routes.ts index 53d6f507a..059a8f64e 100644 --- a/src/app/features/preprints/preprints.routes.ts +++ b/src/app/features/preprints/preprints.routes.ts @@ -45,13 +45,6 @@ export const preprintsRoutes: Routes = [ (c) => c.PreprintsLandingComponent ), }, - { - path: ':providerId', - loadComponent: () => - import('@osf/features/preprints/pages/preprint-provider-overview/preprint-provider-overview.component').then( - (c) => c.PreprintProviderOverviewComponent - ), - }, { path: ':providerId/discover', loadComponent: () => @@ -109,6 +102,13 @@ export const preprintsRoutes: Routes = [ ), canDeactivate: [ConfirmLeavingGuard], }, + { + path: ':providerId', + loadComponent: () => + import('@osf/features/preprints/pages/preprint-provider-overview/preprint-provider-overview.component').then( + (c) => c.PreprintProviderOverviewComponent + ), + }, ], }, ];