25 lines
609 B
TypeScript
Raw Normal View History

import { Component, OnInit } from '@angular/core';
2024-02-04 12:34:40 +01:00
import { SeoService } from '../../../services/seo.service';
@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`);
}
ngOnInit(): void {
}
isExpiredFragment(): boolean {
return location.hash === '#expired';
}
}