From 6c6e2b5cb58e91c6aa8ce86f8acd6a7a142b638e Mon Sep 17 00:00:00 2001 From: Lea Date: Wed, 26 Feb 2025 13:09:49 +0100 Subject: [PATCH] style:fixed prettier and eslint --- frontend/src/app/feature/deposit/deposit.component.html | 2 +- frontend/src/app/feature/deposit/deposit.component.ts | 2 +- frontend/src/app/feature/home/home.component.html | 3 +-- frontend/src/app/feature/home/home.component.ts | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/frontend/src/app/feature/deposit/deposit.component.html b/frontend/src/app/feature/deposit/deposit.component.html index 5375ff2..91179a3 100644 --- a/frontend/src/app/feature/deposit/deposit.component.html +++ b/frontend/src/app/feature/deposit/deposit.component.html @@ -1,5 +1,5 @@ -
+
diff --git a/frontend/src/app/feature/deposit/deposit.component.ts b/frontend/src/app/feature/deposit/deposit.component.ts index a4c29b9..7a45859 100644 --- a/frontend/src/app/feature/deposit/deposit.component.ts +++ b/frontend/src/app/feature/deposit/deposit.component.ts @@ -22,7 +22,7 @@ import { NgIf } from '@angular/common'; changeDetection: ChangeDetectionStrategy.OnPush, }) export class DepositComponent implements OnInit { - @Input() isOpen: boolean = false; + @Input() isOpen = false; @Output() close = new EventEmitter(); protected form!: FormGroup; protected errorMsg = ''; diff --git a/frontend/src/app/feature/home/home.component.html b/frontend/src/app/feature/home/home.component.html index bbe04ae..cc1ed16 100644 --- a/frontend/src/app/feature/home/home.component.html +++ b/frontend/src/app/feature/home/home.component.html @@ -61,6 +61,7 @@

Konto

+ @@ -70,8 +71,6 @@
- -

Letzte Transaktionen

diff --git a/frontend/src/app/feature/home/home.component.ts b/frontend/src/app/feature/home/home.component.ts index 1d16b90..6400d5a 100644 --- a/frontend/src/app/feature/home/home.component.ts +++ b/frontend/src/app/feature/home/home.component.ts @@ -1,4 +1,4 @@ -import { ChangeDetectionStrategy, Component, inject } from '@angular/core'; +import { ChangeDetectionStrategy, Component } from '@angular/core'; import { NavbarComponent } from '../../shared/components/navbar/navbar.component'; import { CurrencyPipe, NgFor } from '@angular/common'; import { Game } from '../../model/Game';