Compare commits

..

No commits in common. "18afc47030deb1a6d02017de5a886261e9639819" and "81923960852ba7af7b699d657cfe8402c5134ca4" have entirely different histories.

1 changed files with 2 additions and 1 deletions

View File

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