diff --git a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html
index 680beb006..443fc1946 100644
--- a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html
+++ b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html
@@ -26,7 +26,7 @@
- {{ fee / (weight / 4) | feeRounding:rounding }} sat/vB
- {{ fee / weight | feeRounding:rounding }} sat/WU
+
+ {{ fee / (weight / 4) | feeRounding:rounding }} sat/vB
+ {{ fee / weight | feeRounding:rounding }} sat/WU
+
+
+ - sat/vB
+ - sat/WU
+
\ No newline at end of file
diff --git a/frontend/src/app/shared/components/fee-rate/fee-rate.component.ts b/frontend/src/app/shared/components/fee-rate/fee-rate.component.ts
index 4d65ef0c2..b1d143e7f 100644
--- a/frontend/src/app/shared/components/fee-rate/fee-rate.component.ts
+++ b/frontend/src/app/shared/components/fee-rate/fee-rate.component.ts
@@ -8,7 +8,7 @@ import { StateService } from '../../../services/state.service';
styleUrls: ['./fee-rate.component.scss']
})
export class FeeRateComponent implements OnInit {
- @Input() fee: number;
+ @Input() fee: number | undefined;
@Input() weight: number = 4;
@Input() rounding: string = null;
@Input() showUnit: boolean = true;