Browse Source

fix(lint): resolve eslint errors

pull/5890/head
KenTandrian 2 months ago
parent
commit
8b3808c601
  1. 2
      libs/ui/src/lib/fire-calculator/fire-calculator.component.ts

2
libs/ui/src/lib/fire-calculator/fire-calculator.component.ts

@ -185,7 +185,7 @@ export class GfFireCalculatorComponent implements OnChanges, OnDestroy {
'principalInvestmentAmount' 'principalInvestmentAmount'
).value, ).value,
projectedTotalAmount: projectedTotalAmount:
Number(this.getProjectedTotalAmount().toFixed(0)) ?? 0, Math.round(this.getProjectedTotalAmount()) || 0,
retirementDate: retirementDate:
this.getRetirementDate() ?? this.DEFAULT_RETIREMENT_DATE this.getRetirementDate() ?? this.DEFAULT_RETIREMENT_DATE
}, },

Loading…
Cancel
Save