diff --git a/frontend/src/app/components/pool-ranking/pool-ranking.component.ts b/frontend/src/app/components/pool-ranking/pool-ranking.component.ts
index f7b91e151..a6f43909a 100644
--- a/frontend/src/app/components/pool-ranking/pool-ranking.component.ts
+++ b/frontend/src/app/components/pool-ranking/pool-ranking.component.ts
@@ -163,7 +163,7 @@ export class PoolRankingComponent implements OnInit {
const i = pool.blockCount.toString();
if (this.miningWindowPreference === '24h') {
return `${pool.name} (${pool.share}%)
` +
- pool.lastEstimatedHashrate.toString() + ' PH/s' +
+ pool.lastEstimatedHashrate.toString() + ' ' + miningStats.miningUnits.hashrateUnit +
`
` + $localize`${ i }:INTERPOLATION: blocks`;
} else {
return `${pool.name} (${pool.share}%)
` +
@@ -201,7 +201,7 @@ export class PoolRankingComponent implements OnInit {
const i = totalBlockOther.toString();
if (this.miningWindowPreference === '24h') {
return `` + $localize`Other (${percentage})` + `
` +
- totalEstimatedHashrateOther.toString() + ' PH/s' +
+ totalEstimatedHashrateOther.toString() + ' ' + miningStats.miningUnits.hashrateUnit +
`
` + $localize`${ i }:INTERPOLATION: blocks`;
} else {
return `` + $localize`Other (${percentage})` + `
` +