chore: prettier
All checks were successful
CI / Get Changed Files (pull_request) Successful in 7s
CI / Checkstyle Main (pull_request) Has been skipped
CI / Docker backend validation (pull_request) Has been skipped
CI / eslint (pull_request) Successful in 25s
CI / oxlint (pull_request) Successful in 28s
CI / prettier (pull_request) Successful in 31s
CI / Docker frontend validation (pull_request) Successful in 45s
CI / test-build (pull_request) Successful in 46s

This commit is contained in:
csimonis 2025-05-15 12:58:12 +02:00
commit dd919799d6
2 changed files with 7 additions and 7 deletions

View file

@ -18,8 +18,8 @@
<div class="fixed inset-0 flex items-center justify-center z-50 p-4" role="presentation">
<div class="relative" role="dialog" aria-modal="true">
@if (showLogin()) {
<app-login
(switchForm)="showRegisterForm()"
<app-login
(switchForm)="showRegisterForm()"
(closeDialog)="hideAuthForms()"
(forgotPassword)="showRecoverPasswordForm()"
></app-login>

View file

@ -10,12 +10,12 @@ import { RecoverPasswordComponent } from './feature/auth/recover-password/recove
selector: 'app-root',
standalone: true,
imports: [
RouterOutlet,
NavbarComponent,
FooterComponent,
LoginComponent,
RouterOutlet,
NavbarComponent,
FooterComponent,
LoginComponent,
RegisterComponent,
RecoverPasswordComponent
RecoverPasswordComponent,
],
templateUrl: './app.component.html',
})