Skip to content

Commit

Permalink
feat: switching to paginated applications list (#6316)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew committed Feb 22, 2024
1 parent edbd71a commit 3dda4a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/component/menu/routes.ts
Expand Up @@ -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';
Expand Down Expand Up @@ -173,7 +173,7 @@ export const routes: IRoute[] = [
{
path: '/applications',
title: 'Applications',
component: ApplicationList,
component: PaginatedApplicationList,
type: 'protected',
menu: { mobile: true, advanced: true },
},
Expand Down

0 comments on commit 3dda4a1

Please sign in to comment.