diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts
index 1c82907142796e37af36469d44fa6c539556cd3b..7754bfdfc6551bd3409ca4a9a18e2b65b66f2a1a 100644
--- a/src/app/app-routing.module.ts
+++ b/src/app/app-routing.module.ts
@@ -1,12 +1,9 @@
 import { NgModule } from '@angular/core';
 import { RouterModule, Routes } from '@angular/router';
 import { ErrorLandingPageComponent } from './error-landing-page/error-landing-page.component';
-// import { GewünschstesModul }  from './blabla/wunschmodul';
 
 
 const routes: Routes = [
-//  { path: '', redirectTo: '/wumod', pathMatch: 'full' }, //default route
-//  { path: 'wumod', component: GewünschstesModul },
 { path: 'errorpage', component: ErrorLandingPageComponent }
 ];