Skip to content

Commit 7698c63

Browse files
authored
Merge pull request #916 from numbersprotocol/feature-fix-verification-code-issue
fix: use text type to prevent incorrect code length validation
2 parents b85cbc6 + 29aa7c0 commit 7698c63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/features/profile/phone-verification/phone-verification.page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export class PhoneVerificationPage {
100100
type: 'input',
101101
templateOptions: {
102102
label: enterVerificationCodeTranslation,
103-
type: 'number',
103+
type: 'text',
104104
placeholder: verificationCodePlaceHolderTranslation,
105105
required: true,
106106
pattern: VERIFICATION_CODE_REGEXP,

0 commit comments

Comments
 (0)