diff --git a/app/interactives/compounding-frequency-calculator/page.tsx b/app/interactives/compounding-frequency-calculator/page.tsx index 951ff13..8e43df5 100644 --- a/app/interactives/compounding-frequency-calculator/page.tsx +++ b/app/interactives/compounding-frequency-calculator/page.tsx @@ -505,19 +505,19 @@ export default function CompoundInterestCalculator() {

- Balance after{" "} + Balance after {hasError - ? "-" - : `${periods} ${getPeriodText(selectedCompounding, Number(periods))}`} + ? "" + : ` ${periods} ${getPeriodText(selectedCompounding, Number(periods))}`}

{hasError ? "-" : balanceStr}

- Interest accrued over{" "} + Interest accrued over {hasError - ? "-" - : `${periods} ${getPeriodText(selectedCompounding, Number(periods))}`} + ? "" + : ` ${periods} ${getPeriodText(selectedCompounding, Number(periods))}`}

{hasError ? "-" : interestStr}