Skip to content

Commit

Permalink
fix lint and ci issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherPHolder committed Mar 2, 2024
1 parent f6acfa8 commit 67f1665
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 12 deletions.
8 changes: 6 additions & 2 deletions apps/audit-manager/src/app/app.routes.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import { Route } from '@angular/router';
import { auditBuilderRoutes } from '@app-speed/feature/audit-builder';

export const appRoutes: Route[] = [
...auditBuilderRoutes
{
path: 'audit-builder',
loadComponent: () => import('@app-speed/feature/audit-builder').then(c => c.AuditBuilderContainer),
},
{ path: '', redirectTo: 'audit-builder', pathMatch: 'full' },
{ path: '**', redirectTo: 'audit-builder' },
];
2 changes: 1 addition & 1 deletion libs/feature/audit-builder/src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { auditBuilderRoutes } from './lib/audit-builder.routes';
export {AuditBuilderContainer} from './lib/audit-builder/audit-builder.container';
9 changes: 0 additions & 9 deletions libs/feature/audit-builder/src/lib/audit-builder.routes.ts

This file was deleted.

0 comments on commit 67f1665

Please sign in to comment.