From 3dda4a1f0e73d0cfbcb1df6b9a25827b08c360e7 Mon Sep 17 00:00:00 2001 From: Mateusz Kwasniewski Date: Thu, 22 Feb 2024 15:15:50 +0100 Subject: [PATCH] feat: switching to paginated applications list (#6316) --- frontend/src/component/menu/routes.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/component/menu/routes.ts b/frontend/src/component/menu/routes.ts index 3bd675e294..8e2aac805a 100644 --- a/frontend/src/component/menu/routes.ts +++ b/frontend/src/component/menu/routes.ts @@ -42,7 +42,7 @@ import { LazyProject } from 'component/project/Project/LazyProject'; import { LoginHistory } from 'component/loginHistory/LoginHistory'; import { FeatureTypesList } from 'component/featureTypes/FeatureTypesList'; import { ViewIntegration } from 'component/integrations/ViewIntegration/ViewIntegration'; -import { ApplicationList } from '../application/ApplicationList/ApplicationList'; +import { PaginatedApplicationList } from '../application/ApplicationList/PaginatedApplicationList'; import { AddonRedirect } from 'component/integrations/AddonRedirect/AddonRedirect'; import { ExecutiveDashboard } from 'component/executiveDashboard/ExecutiveDashboard'; import { FeedbackList } from '../feedbackNew/FeedbackList'; @@ -173,7 +173,7 @@ export const routes: IRoute[] = [ { path: '/applications', title: 'Applications', - component: ApplicationList, + component: PaginatedApplicationList, type: 'protected', menu: { mobile: true, advanced: true }, },