From aa2f6e0ecc09412b0bb5f24dd4024676244ac70b Mon Sep 17 00:00:00 2001 From: NyxiumYuuki Date: Sun, 30 May 2021 18:29:02 +0200 Subject: [PATCH] Updated routes --- frontend/src/app/app-routing.module.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/app/app-routing.module.ts b/frontend/src/app/app-routing.module.ts index d5c32ae..91049af 100644 --- a/frontend/src/app/app-routing.module.ts +++ b/frontend/src/app/app-routing.module.ts @@ -1,16 +1,16 @@ import { NgModule } from '@angular/core'; import { RouterModule, Routes } from '@angular/router'; import {LoginComponent} from "./login/login.component"; -import {GeneralComponent} from "./general/general.component"; +import {ChatComponent} from "./chat/chat.component"; const routes: Routes = [ { - path: 'login', + path: '', component: LoginComponent, }, { - path: 'general', - component: GeneralComponent, + path: 'chat', + component: ChatComponent, } ];