+
diff --git a/frontend/src/app/components/master-page/master-page.component.ts b/frontend/src/app/components/master-page/master-page.component.ts
index a4bbe8313..ef8bf23fb 100644
--- a/frontend/src/app/components/master-page/master-page.component.ts
+++ b/frontend/src/app/components/master-page/master-page.component.ts
@@ -27,6 +27,7 @@ export class MasterPageComponent implements OnInit {
networkPaths$: Observable
>;
footerVisible = true;
userAuth: any | undefined;
+ servicesEnabled = false;
@ViewChild(MenuComponent)
private menuComponent!: MenuComponent;
@@ -57,6 +58,7 @@ export class MasterPageComponent implements OnInit {
}
});
+ this.servicesEnabled = this.officialMempoolSpace && this.stateService.env.ACCELERATOR === true && this.stateService.network === '';
this.userAuth = JSON.parse(localStorage.getItem('auth') || '') ?? null;
}