diff --git a/frontend/src/app/app.routes.ts b/frontend/src/app/app.routes.ts index 8874f98..7958ffb 100644 --- a/frontend/src/app/app.routes.ts +++ b/frontend/src/app/app.routes.ts @@ -9,11 +9,13 @@ export const routes: Routes = [ }, { path: 'login', - loadComponent: () => import('./feature/auth/login/login.component').then(m => m.LoginComponent), + loadComponent: () => + import('./feature/auth/login/login.component').then((m) => m.LoginComponent), }, { path: 'register', - loadComponent: () => import('./feature/auth/register/register.component').then(m => m.RegisterComponent), + loadComponent: () => + import('./feature/auth/register/register.component').then((m) => m.RegisterComponent), }, { path: 'home', diff --git a/frontend/src/app/feature/auth/login/login.component.ts b/frontend/src/app/feature/auth/login/login.component.ts index 694d91d..1e63b7f 100644 --- a/frontend/src/app/feature/auth/login/login.component.ts +++ b/frontend/src/app/feature/auth/login/login.component.ts @@ -20,16 +20,24 @@ import { CommonModule } from '@angular/common';