Merge branch 'development' of ssh://git.eigen.co.id:2222/eigen/pos-be into development

pull/157/head 1.6.11-alpha.1
shancheas 2025-06-10 14:31:07 +07:00
commit 399ca0bdda
1 changed files with 1 additions and 2 deletions

View File

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