diff --git a/frontend/src/app/app.component.ts b/frontend/src/app/app.component.ts index 40dcec5..b997436 100644 --- a/frontend/src/app/app.component.ts +++ b/frontend/src/app/app.component.ts @@ -5,11 +5,11 @@ import { KeycloakAngularModule } from 'keycloak-angular'; import { FooterComponent } from './shared/components/footer/footer.component'; @Component({ - selector: 'app-root', - imports: [CommonModule, RouterOutlet, KeycloakAngularModule, FooterComponent], - providers: [], - templateUrl: './app.component.html', - styleUrl: './app.component.css', - changeDetection: ChangeDetectionStrategy.OnPush + selector: 'app-root', + imports: [CommonModule, RouterOutlet, KeycloakAngularModule, FooterComponent], + providers: [], + templateUrl: './app.component.html', + styleUrl: './app.component.css', + changeDetection: ChangeDetectionStrategy.OnPush, }) export class AppComponent {} diff --git a/frontend/src/app/feature/deposit/deposit.component.ts b/frontend/src/app/feature/deposit/deposit.component.ts index 0228f1b..5f6ed8e 100644 --- a/frontend/src/app/feature/deposit/deposit.component.ts +++ b/frontend/src/app/feature/deposit/deposit.component.ts @@ -24,10 +24,10 @@ import { ModalAnimationService } from '../../shared/services/modal-animation.ser import gsap from 'gsap'; @Component({ - selector: 'app-deposit', - imports: [ReactiveFormsModule, NgIf], - templateUrl: './deposit.component.html', - changeDetection: ChangeDetectionStrategy.OnPush + selector: 'app-deposit', + imports: [ReactiveFormsModule, NgIf], + templateUrl: './deposit.component.html', + changeDetection: ChangeDetectionStrategy.OnPush, }) export class DepositComponent implements OnInit, AfterViewInit, OnDestroy, OnChanges { @Input() isOpen = false; diff --git a/frontend/src/app/feature/home/home.component.ts b/frontend/src/app/feature/home/home.component.ts index 433e8a7..6a918d0 100644 --- a/frontend/src/app/feature/home/home.component.ts +++ b/frontend/src/app/feature/home/home.component.ts @@ -8,10 +8,10 @@ import { ConfirmationComponent } from '../../shared/components/confirmation/conf import { ActivatedRoute } from '@angular/router'; @Component({ - selector: 'app-homepage', - imports: [NavbarComponent, CurrencyPipe, NgFor, DepositComponent, ConfirmationComponent], - templateUrl: './home.component.html', - changeDetection: ChangeDetectionStrategy.OnPush + selector: 'app-homepage', + imports: [NavbarComponent, CurrencyPipe, NgFor, DepositComponent, ConfirmationComponent], + templateUrl: './home.component.html', + changeDetection: ChangeDetectionStrategy.OnPush, }) export default class HomeComponent implements OnInit { isDepositModalOpen = false; diff --git a/frontend/src/app/feature/landing/landing.component.ts b/frontend/src/app/feature/landing/landing.component.ts index 465a239..9ca10dc 100644 --- a/frontend/src/app/feature/landing/landing.component.ts +++ b/frontend/src/app/feature/landing/landing.component.ts @@ -3,10 +3,10 @@ import { NavbarComponent } from '../../shared/components/navbar/navbar.component import { NgFor } from '@angular/common'; @Component({ - selector: 'app-landing-page', - imports: [NavbarComponent, NgFor], - templateUrl: './landing.component.html', - changeDetection: ChangeDetectionStrategy.OnPush + selector: 'app-landing-page', + imports: [NavbarComponent, NgFor], + templateUrl: './landing.component.html', + changeDetection: ChangeDetectionStrategy.OnPush, }) export class LandingComponent implements OnInit, OnDestroy { currentSlide = 0; diff --git a/frontend/src/app/feature/login-success/login-success.component.ts b/frontend/src/app/feature/login-success/login-success.component.ts index af867c8..8a34690 100644 --- a/frontend/src/app/feature/login-success/login-success.component.ts +++ b/frontend/src/app/feature/login-success/login-success.component.ts @@ -4,11 +4,11 @@ import { KeycloakService } from 'keycloak-angular'; import { Router } from '@angular/router'; @Component({ - selector: 'app-login-success', - imports: [], - templateUrl: './login-success.component.html', - styleUrl: './login-success.component.css', - changeDetection: ChangeDetectionStrategy.OnPush + selector: 'app-login-success', + imports: [], + templateUrl: './login-success.component.html', + styleUrl: './login-success.component.css', + changeDetection: ChangeDetectionStrategy.OnPush, }) export default class LoginSuccessComponent implements OnInit { private userService: UserService = inject(UserService); diff --git a/frontend/src/app/shared/components/confirmation/confirmation.component.ts b/frontend/src/app/shared/components/confirmation/confirmation.component.ts index 8b00587..05a5392 100644 --- a/frontend/src/app/shared/components/confirmation/confirmation.component.ts +++ b/frontend/src/app/shared/components/confirmation/confirmation.component.ts @@ -12,9 +12,9 @@ import { ModalAnimationService } from '../../services/modal-animation.service'; import gsap from 'gsap'; @Component({ - selector: 'app-confirmation', - imports: [], - templateUrl: './confirmation.component.html' + selector: 'app-confirmation', + imports: [], + templateUrl: './confirmation.component.html', }) export class ConfirmationComponent implements AfterViewInit, OnDestroy { @Input() successful = true; diff --git a/frontend/src/app/shared/components/footer/footer.component.ts b/frontend/src/app/shared/components/footer/footer.component.ts index bd22db6..d3548e9 100644 --- a/frontend/src/app/shared/components/footer/footer.component.ts +++ b/frontend/src/app/shared/components/footer/footer.component.ts @@ -4,10 +4,10 @@ import { faMoneyBillTransfer, faCreditCard, faWallet } from '@fortawesome/free-s import { faPaypal, faGooglePay, faApplePay } from '@fortawesome/free-brands-svg-icons'; @Component({ - selector: 'app-footer', - templateUrl: './footer.component.html', - imports: [FontAwesomeModule], - changeDetection: ChangeDetectionStrategy.OnPush + selector: 'app-footer', + templateUrl: './footer.component.html', + imports: [FontAwesomeModule], + changeDetection: ChangeDetectionStrategy.OnPush, }) export class FooterComponent { currentYear: number = new Date().getFullYear(); diff --git a/frontend/src/app/shared/components/navbar/navbar.component.ts b/frontend/src/app/shared/components/navbar/navbar.component.ts index 19d2477..9fd287e 100644 --- a/frontend/src/app/shared/components/navbar/navbar.component.ts +++ b/frontend/src/app/shared/components/navbar/navbar.component.ts @@ -5,10 +5,10 @@ import { UserService } from '../../../service/user.service'; import { CurrencyPipe } from '@angular/common'; @Component({ - selector: 'app-navbar', - templateUrl: './navbar.component.html', - imports: [RouterModule, CurrencyPipe], - changeDetection: ChangeDetectionStrategy.OnPush + selector: 'app-navbar', + templateUrl: './navbar.component.html', + imports: [RouterModule, CurrencyPipe], + changeDetection: ChangeDetectionStrategy.OnPush, }) export class NavbarComponent implements OnInit { isMenuOpen = false;