From 76581748964a2d9966caff9cb43c3a4f8b832bef Mon Sep 17 00:00:00 2001 From: sawara-mfsys Date: Fri, 15 May 2026 10:54:15 +0500 Subject: [PATCH] Re-enable dashboard refresh actions Uncommented calls to dashBoardController.fetchDepositAccounts() and dashBoardController.fetchExchangeRates() in the refresh icon's onTap handler so tapping the refresh button now triggers reloading of deposit accounts and exchange rates, restoring the dashboard's refresh behavior. --- lib/app/modules/dashboard/views/shared/home_page.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/app/modules/dashboard/views/shared/home_page.dart b/lib/app/modules/dashboard/views/shared/home_page.dart index 9d8f124..4e9273d 100644 --- a/lib/app/modules/dashboard/views/shared/home_page.dart +++ b/lib/app/modules/dashboard/views/shared/home_page.dart @@ -71,8 +71,8 @@ class MyHomePage extends StatelessWidget { borderRadius: const BorderRadius.all(Radius.circular(50)), splashColor: Colors.transparent, onTap: () { - // dashBoardController.fetchDepositAccounts(); - // dashBoardController.fetchExchangeRates(); + dashBoardController.fetchDepositAccounts(); + dashBoardController.fetchExchangeRates(); }, child: const Icon( Icons.refresh_outlined,