build(package.json): update Angular dependencies to 19.2.2
Some checks failed
CI / Get Changed Files (pull_request) Successful in 6s
CI / Checkstyle Main (pull_request) Has been skipped
CI / prettier (pull_request) Failing after 19s
CI / eslint (pull_request) Failing after 46s
CI / test-build (pull_request) Failing after 47s

This commit is contained in:
Jan K9f 2025-03-13 11:18:10 +01:00
parent ce7c30b9ae
commit d285297ede
Signed by: jank
GPG key ID: 22BEAC760B3333D6
10 changed files with 596 additions and 430 deletions

View file

@ -8,11 +8,10 @@ import { ConfirmationComponent } from '../../shared/components/confirmation/conf
import { ActivatedRoute } from '@angular/router';
@Component({
selector: 'app-homepage',
standalone: true,
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;