style: fix formatting and add missing commas in code
All checks were successful
CI / Get Changed Files (pull_request) Successful in 10s
CI / Checkstyle Main (pull_request) Has been skipped
CI / Docker backend validation (pull_request) Has been skipped
CI / oxlint (pull_request) Successful in 26s
CI / eslint (pull_request) Successful in 39s
CI / prettier (pull_request) Successful in 30s
CI / Docker frontend validation (pull_request) Successful in 57s
CI / test-build (pull_request) Successful in 42s

This commit is contained in:
Jan-Marlon Leibl 2025-05-15 14:04:43 +02:00
commit 6d353cc202
Signed by: jleibl
GPG key ID: 300B2F906DC6F1D5
5 changed files with 24 additions and 18 deletions

View file

@ -21,11 +21,11 @@ import { SoundInitializerService } from './shared/services/sound-initializer.ser
PlaySoundDirective,
],
templateUrl: './app.component.html',
hostDirectives: [PlaySoundDirective]
hostDirectives: [PlaySoundDirective],
})
export class AppComponent {
private soundInitializer = inject(SoundInitializerService);
showLogin = signal(false);
showRegister = signal(false);
showRecoverPassword = signal(false);