feat: Update navigation logic in LoginController to redirect to home page after MPIN check

This commit is contained in:
Vaibhav Surve 2025-06-10 16:33:32 +05:30
parent 040a8f0a2e
commit 18987aa97a

View File

@ -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');
}