diff --git a/frontend/src/app/services/seo.service.ts b/frontend/src/app/services/seo.service.ts index b93eb9d60..2e1916626 100644 --- a/frontend/src/app/services/seo.service.ts +++ b/frontend/src/app/services/seo.service.ts @@ -27,6 +27,10 @@ export class SeoService { } getTitle(): string { + if (this.network === 'liquid') + return 'mempool - Liquid Network'; + if (this.network === 'bisq') + return 'mempool - Bisq Markets'; return 'mempool - ' + (this.network ? this.ucfirst(this.network) : 'Bitcoin') + ' Explorer'; }