Merge pull request #2753 from mempool/simon/remove-console-log

Remove annoying frontend console log
This commit is contained in:
wiz 2022-11-30 22:50:23 +09:00 committed by GitHub
commit 6741a2b226
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 3 deletions

View File

@ -30,7 +30,6 @@ export class BisqMasterPageComponent implements OnInit {
this.connectionState$ = this.stateService.connectionState$;
this.urlLanguage = this.languageService.getLanguageForUrl();
this.navigationService.subnetPaths.subscribe((paths) => {
console.log('network paths updated...');
this.networkPaths = paths;
});
}

View File

@ -33,7 +33,6 @@ export class LiquidMasterPageComponent implements OnInit {
this.network$ = merge(of(''), this.stateService.networkChanged$);
this.urlLanguage = this.languageService.getLanguageForUrl();
this.navigationService.subnetPaths.subscribe((paths) => {
console.log('network paths updated...');
this.networkPaths = paths;
});
}

View File

@ -35,7 +35,6 @@ export class MasterPageComponent implements OnInit {
this.urlLanguage = this.languageService.getLanguageForUrl();
this.subdomain = this.enterpriseService.getSubdomain();
this.navigationService.subnetPaths.subscribe((paths) => {
console.log('network paths updated...');
this.networkPaths = paths;
});
}