style: format code and improve readability

This commit is contained in:
Constantin Simonis 2025-05-07 13:42:41 +02:00 committed by Jan-Marlon Leibl
commit f7e8fd76a6
Signed by: jleibl
GPG key ID: 300B2F906DC6F1D5
12 changed files with 143 additions and 94 deletions

View file

@ -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',