Skip to content

Commit

Permalink
updated default benId response.
Browse files Browse the repository at this point in the history
  • Loading branch information
Amruth-Vamshi committed Sep 17, 2023
1 parent 596e531 commit 1d1f261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ export class AppController {
let number = wordToNumber(prompt.inputTextInEnglish, isOTP ? 'otp':'benId')
// let number = prompt.inputTextInEnglish.replace(/\s/g, '')
prompt.inputTextInEnglish = number.toUpperCase()
if(prompt.inputTextInEnglish == "") prompt.inputTextInEnglish = '1111'
if(prompt.inputTextInEnglish == "") prompt.inputTextInEnglish = isOTP ? '1111' : 'AB123123123'
isNumber = true
// if(/\d/.test(number)){
// isNumber = true
Expand Down

0 comments on commit 1d1f261

Please sign in to comment.