Skip to content

Commit 0f55eb0

Browse files
committed
update phone validation hint
1 parent fae948f commit 0f55eb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/veterans/VeteranDialog.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ class VeteranDialog extends Component {
227227
result.primaryPhone = 'The Primary Phone field is required.';
228228
}
229229
else if (!validatePhoneNumber(primaryPhone)) {
230-
result.primaryPhone = 'Enter a valid phone number in the format (555) 555-5555.';
230+
result.primaryPhone = 'Enter a valid phone number in the format \'555555555\'';
231231
}
232232

233233
if ((email !== '' && email !== undefined) && !validateEmail(email)) {

0 commit comments

Comments
 (0)