feat/otp-cancel #147

Merged
firmanr merged 2 commits from feat/otp-cancel into development 2025-06-10 13:21:34 +07:00
1 changed files with 1 additions and 2 deletions

View File

@ -50,9 +50,8 @@ export class OtpService {
this.hasRepeatedDigits(otp) ||
this.isPalindrome(otp) ||
this.hasPartiallyRepeatedDigits(otp) ||
otp?.split('')?.length < this.otpLength
otp?.length < this.otpLength
);
return otp;
}
}