Browse Source

a

pull/5679/head
Shivansh-22866 3 months ago
parent
commit
386ecb354b
  1. 3
      apps/client/src/app/pages/portfolio/fire/fire-page.component.ts

3
apps/client/src/app/pages/portfolio/fire/fire-page.component.ts

@ -223,7 +223,8 @@ export class GfFirePageComponent implements OnDestroy, OnInit {
private calculateWithdrawalRates() { private calculateWithdrawalRates() {
if (this.fireWealth && this.user?.settings?.safeWithdrawalRate) { if (this.fireWealth && this.user?.settings?.safeWithdrawalRate) {
this.withdrawalRatePerYear = this.fireWealth.mul( this.withdrawalRatePerYear = new Big(
this.fireWealth.today.valueInBaseCurrency *
this.user.settings.safeWithdrawalRate this.user.settings.safeWithdrawalRate
); );

Loading…
Cancel
Save