Prettier and rebase

This commit is contained in:
Phan Huy Tran 2025-02-12 10:46:48 +01:00
parent c3f9ba7bca
commit f6bcc1be11
8 changed files with 30 additions and 33 deletions

View file

@ -1,7 +1,7 @@
import {Routes} from '@angular/router';
import {LandingPageComponent} from "./landing-page/landing-page.component";
import {HomepageComponent} from "./homepage/homepage/homepage.component";
import {authGuard} from "./auth.guard";
import { Routes } from '@angular/router';
import { LandingPageComponent } from './landing-page/landing-page.component';
import { HomepageComponent } from './homepage/homepage/homepage.component';
import { authGuard } from './auth.guard';
export const routes: Routes = [
{
@ -16,7 +16,6 @@ export const routes: Routes = [
path: 'home',
component: HomepageComponent,
},
]
}
],
},
];