Skip to content

Commit

Permalink
Type: fix
Browse files Browse the repository at this point in the history
Subject: Fix the Mobile(OTP) not working effectively
Body: The users were able to navigate to the next page without entering the OTP, so there needed to be a provision to check whether user has entered the OTP before verifying
  • Loading branch information
Sarthak9504 committed Oct 4, 2023
1 parent a2d9dc3 commit ba83458
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ public void onNextClicked() {

if (mEtOtp.getText().toString().trim().isEmpty()) {
showToast("OTP not Entered");
mEtOtp.requestFocus();
} else {
mFabNext.setClickable(false);
mProgressBar.setVisibility(View.VISIBLE);
Expand Down

0 comments on commit ba83458

Please sign in to comment.