Fix small typo in lightning node ranking dashboard seo

This commit is contained in:
nymkappa 2023-11-29 15:59:15 +09:00
parent ff819673e5
commit b9e050e24b
No known key found for this signature in database
GPG Key ID: E155910B16E8BD04

View File

@ -20,7 +20,7 @@ export class NodesRankingsDashboard implements OnInit {
ngOnInit(): void {
this.seoService.setTitle($localize`Top lightning nodes`);
this.seoService.setDescription($localize`:@@meta.description.lightning.rankings-dashboard:See top the Lightning network nodes ranked by liquidity, connectivity, and age.`);
this.seoService.setDescription($localize`:@@meta.description.lightning.rankings-dashboard:See top Lightning network nodes ranked by liquidity, connectivity, and age.`);
this.nodesRanking$ = this.lightningApiService.getNodesRanking$().pipe(share());
}
}