diff --git a/frontend/src/app/landing-page/landing-page.component.html b/frontend/src/app/landing-page/landing-page.component.html index 944881c..80d5974 100644 --- a/frontend/src/app/landing-page/landing-page.component.html +++ b/frontend/src/app/landing-page/landing-page.component.html @@ -1,5 +1,5 @@ @if (isLoggedIn) { - + } @else { - + } diff --git a/frontend/src/app/landing-page/landing-page.component.ts b/frontend/src/app/landing-page/landing-page.component.ts index f5fee0c..3b6292b 100644 --- a/frontend/src/app/landing-page/landing-page.component.ts +++ b/frontend/src/app/landing-page/landing-page.component.ts @@ -1,13 +1,11 @@ import { Component, inject } from '@angular/core'; import { KeycloakService } from 'keycloak-angular'; -import {RouterLink} from "@angular/router"; +import { RouterLink } from '@angular/router'; @Component({ selector: 'app-landing-page', standalone: true, - imports: [ - RouterLink - ], + imports: [RouterLink], templateUrl: './landing-page.component.html', }) export class LandingPageComponent {