From 39d81a4e7d3974a23523ac433e0b59120536bd50 Mon Sep 17 00:00:00 2001 From: Iain McCain Date: Thu, 17 Jun 2021 12:16:03 +0100 Subject: [PATCH] remove Community Test --- src/app/app.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 22db87f4..f0ad76dc 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -120,7 +120,7 @@ export class AppComponent implements OnInit, OnDestroy { private setTitle(): void { const applicationName = 'Strax Wallet'; const testnetSuffix = this.globalService.getTestnetEnabled() ? ' (testnet)' : ''; - const title = `${applicationName} ${this.globalService.getApplicationVersion()}${testnetSuffix} - Community Testing`; + const title = `${applicationName} ${this.globalService.getApplicationVersion()}${testnetSuffix}`; this.titleService.setTitle(title); }