We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70c886e commit 7d33b5bCopy full SHA for 7d33b5b
1 file changed
src/app/features/budget/budget.component.ts
@@ -296,7 +296,7 @@ export class BudgetComponent implements OnInit {
296
this.totalBudget = totalBudget.toFixed(2);
297
this.remainingBudgets = '0';
298
const overSpent = (spent - totalBudget).toFixed(2);
299
- this.budgetMessage = `⚠️ You have exceeded your budget by ${overSpent}!`;
+ this.budgetMessage = `⚠️ You have exceeded your budget by ${this.currency}${overSpent}!`;
300
} else {
301
this.totalSpent = spent.toFixed(2);
302
0 commit comments