2024-01-28 19:43:50 +01:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
2024-02-04 12:34:40 +01:00
|
|
|
import { SeoService } from '../../../services/seo.service';
|
2024-01-28 19:43:50 +01:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-federation-wallet',
|
|
|
|
templateUrl: './federation-wallet.component.html',
|
|
|
|
styleUrls: ['./federation-wallet.component.scss']
|
|
|
|
})
|
|
|
|
export class FederationWalletComponent implements OnInit {
|
|
|
|
|
2024-02-04 12:34:40 +01:00
|
|
|
constructor(
|
|
|
|
private seoService: SeoService
|
|
|
|
) {
|
|
|
|
this.seoService.setTitle($localize`:@@993e5bc509c26db81d93018e24a6afe6e50cae52:Liquid Federation Wallet`);
|
|
|
|
}
|
2024-01-28 19:43:50 +01:00
|
|
|
|
|
|
|
ngOnInit(): void {
|
|
|
|
}
|
|
|
|
|
2024-03-03 18:31:39 +01:00
|
|
|
isExpiredFragment(): boolean {
|
|
|
|
return location.hash === '#expired';
|
|
|
|
}
|
|
|
|
|
2024-01-28 19:43:50 +01:00
|
|
|
}
|