From 154809f0f9b56160b6db63fc26f232c2b9f8be58 Mon Sep 17 00:00:00 2001 From: softsimon Date: Sun, 15 Aug 2021 20:05:49 +0300 Subject: [PATCH] Fix navigate to sponsor when base module is not mempool --- frontend/src/app/components/about/about.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/components/about/about.component.ts b/frontend/src/app/components/about/about.component.ts index 510845b43..9ad95647d 100644 --- a/frontend/src/app/components/about/about.component.ts +++ b/frontend/src/app/components/about/about.component.ts @@ -41,7 +41,7 @@ export class AboutComponent implements OnInit { } sponsor() { - if (this.officialMempoolSpace) { + if (this.officialMempoolSpace && this.stateService.env.BASE_MODULE === 'mempool') { this.router.navigateByUrl('/sponsor'); } else { this.showNavigateToSponsor = true;