From 18987aa97a11a57b1e432fdf0d5949da8ff4d4aa Mon Sep 17 00:00:00 2001 From: Vaibhav Surve Date: Tue, 10 Jun 2025 16:33:32 +0530 Subject: [PATCH] feat: Update navigation logic in LoginController to redirect to home page after MPIN check --- lib/controller/auth/login_controller.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/controller/auth/login_controller.dart b/lib/controller/auth/login_controller.dart index c145c2c..1461d27 100644 --- a/lib/controller/auth/login_controller.dart +++ b/lib/controller/auth/login_controller.dart @@ -69,7 +69,7 @@ class LoginController extends MyController { print('MPIN Enabled? $isMpinEnabled'); if (isMpinEnabled) { - Get.toNamed('/auth/mpin-auth'); + Get.toNamed('/home'); } else { Get.toNamed('/home'); }