fix: adjust inconsistencies in the frontend
Some checks failed
CI / Get Changed Files (pull_request) Successful in 8s
CI / Backend Tests (pull_request) Has been skipped
CI / Checkstyle Main (pull_request) Has been skipped
Pull Request Labeler / labeler (pull_request_target) Successful in 8s
CI / Docker backend validation (pull_request) Has been skipped
Label PRs based on size / Check PR size (pull_request) Successful in 14s
CI / oxlint (pull_request) Failing after 26s
CI / prettier (pull_request) Failing after 35s
CI / eslint (pull_request) Failing after 39s
CI / Docker frontend validation (pull_request) Successful in 49s
CI / test-build (pull_request) Successful in 57s
Claude PR Review / claude-code (pull_request) Successful in 1m13s

This commit is contained in:
Phan Huy Tran 2025-06-04 10:29:30 +02:00
commit bd031e8658
3 changed files with 15 additions and 28 deletions

View file

@ -2,12 +2,13 @@ import { ChangeDetectionStrategy, Component } from '@angular/core';
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
import { faCreditCard, faMoneyBillTransfer, faWallet } from '@fortawesome/free-solid-svg-icons';
import { faApplePay, faGooglePay, faPaypal } from '@fortawesome/free-brands-svg-icons';
import {RouterLink} from "@angular/router";
@Component({
selector: 'app-footer',
standalone: true,
templateUrl: './footer.component.html',
imports: [FontAwesomeModule],
imports: [FontAwesomeModule, RouterLink],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class FooterComponent {
@ -18,5 +19,4 @@ export class FooterComponent {
faMoneyBillTransfer = faMoneyBillTransfer;
faWallet = faWallet;
faGooglePay = faGooglePay;
faApplePay = faApplePay;
}