From f920e8c227334d8dfd3e78ac1d929f7f6e97bacc Mon Sep 17 00:00:00 2001 From: Roshan Patel Date: Fri, 3 Oct 2025 20:59:37 +0530 Subject: [PATCH] Update 7-bank-project/solution/app.js Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- 7-bank-project/solution/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/7-bank-project/solution/app.js b/7-bank-project/solution/app.js index bc0226de..01756455 100644 --- a/7-bank-project/solution/app.js +++ b/7-bank-project/solution/app.js @@ -232,7 +232,7 @@ function updateDashboard() {   updateElement('description', account.description);   updateElement('balance', account.balance.toFixed(2)); -  updateElement('balance-currency', account.currency); // Fixed ID for currency display +  updateElement('currency', account.currency); // Fixed ID for currency display   // Update transactions   const transactionsRows = document.createDocumentFragment();