diff --git a/front/app/src/common/crud/crud-routing.module.ts b/front/app/src/common/crud/crud-routing.module.ts index 9892b812..862ab9bf 100644 --- a/front/app/src/common/crud/crud-routing.module.ts +++ b/front/app/src/common/crud/crud-routing.module.ts @@ -6,7 +6,7 @@ import { ListComponent } from "./list/list.component"; const routes: Routes = [ { path: '', component: ListComponent }, { path: ':id', component: CardComponent }, -];; +]; @NgModule({ imports: [RouterModule.forChild(routes)],