Skip to content

Commit de05d4d

Browse files
committed
fixup! fixup! Fix RampBankFormScene UI & UX
1 parent 1b3ae5d commit de05d4d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/components/scenes/RampBankFormScene.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@ const validateAccountNumber = (value: string): ValidationResult => {
4949
if (trimmed.length < 8) {
5050
return {
5151
isValid: false,
52-
errorMessage: sprintf(lstrings.ramp_account_number_error_min_length_1s, '8')
52+
errorMessage: sprintf(
53+
lstrings.ramp_account_number_error_min_length_1s,
54+
'8'
55+
)
5356
}
5457
}
5558
return { isValid: true, errorMessage: '' }

0 commit comments

Comments
 (0)