diff --git a/lib/features/authentication/authentication_view_model.dart b/lib/features/authentication/authentication_view_model.dart index f1606bf..36fd187 100644 --- a/lib/features/authentication/authentication_view_model.dart +++ b/lib/features/authentication/authentication_view_model.dart @@ -252,7 +252,8 @@ class AuthenticationViewModel extends ChangeNotifier { if (apiResponse.data != null && apiResponse.data['isSMSSent'] == true) { navigateToOTPScreen(otpTypeEnum: otpTypeEnum, phoneNumber: phoneNumber); } else { - navigateToOTPScreen(otpTypeEnum: otpTypeEnum, phoneNumber: phoneNumber); + // TODO: Handle isSMSSent false + // navigateToOTPScreen(otpTypeEnum: otpTypeEnum, phoneNumber: phoneNumber); } } },