diff --git a/lib/features/home/presentation/home_controller.dart b/lib/features/home/presentation/home_controller.dart index e594bdf7b9..222783efc1 100644 --- a/lib/features/home/presentation/home_controller.dart +++ b/lib/features/home/presentation/home_controller.dart @@ -259,7 +259,8 @@ class HomeController extends ReloadableController { authenticatedAccountManager.showAccountsBottomSheetModal( context: currentContext!, - onSelectActiveAccountAction: _handleSelectActiveAccount + onSelectActiveAccountAction: _handleSelectActiveAccount, + onAddAnotherAccountAction: (_) => _handleAddOtherAccount() ); } @@ -315,4 +316,8 @@ class HomeController extends ReloadableController { _showListAccountPicker(); } + + void _handleAddOtherAccount() { + navigateToTwakeIdPage(); + } } \ No newline at end of file