From 8e5c2fdc335107533e7cad0fb724e4a0283249c3 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 27 May 2021 16:31:54 +0200 Subject: Fix home routing --- client/src/app/+home/home-routing.module.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/client/src/app/+home/home-routing.module.ts b/client/src/app/+home/home-routing.module.ts index 1eaee4449..a2085f191 100644 --- a/client/src/app/+home/home-routing.module.ts +++ b/client/src/app/+home/home-routing.module.ts @@ -1,13 +1,11 @@ import { NgModule } from '@angular/core' import { RouterModule, Routes } from '@angular/router' -import { MetaGuard } from '@ngx-meta/core' import { HomeComponent } from './home.component' const homeRoutes: Routes = [ { path: '', - component: HomeComponent, - canActivateChild: [ MetaGuard ] + component: HomeComponent } ] -- cgit v1.2.3