We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
RampBankFormScene
1 parent 1b3ae5d commit de05d4dCopy full SHA for de05d4d
src/components/scenes/RampBankFormScene.tsx
@@ -49,7 +49,10 @@ const validateAccountNumber = (value: string): ValidationResult => {
49
if (trimmed.length < 8) {
50
return {
51
isValid: false,
52
- errorMessage: sprintf(lstrings.ramp_account_number_error_min_length_1s, '8')
+ errorMessage: sprintf(
53
+ lstrings.ramp_account_number_error_min_length_1s,
54
+ '8'
55
+ )
56
}
57
58
return { isValid: true, errorMessage: '' }
0 commit comments