fix validation error
continuous-integration/drone/push Build was killed Details

master
Hannah 2026-07-15 23:18:13 -06:00
parent 46edeb6022
commit dd5e16bec5
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ this.form = this.formBuilder.group({
var hasAddress1 = address1 && address1.value && address1.value.length > 2; var hasAddress1 = address1 && address1.value && address1.value.length > 2;
var hasCity = city && city.value && city.value.length > 2; var hasCity = city && city.value && city.value.length > 2;
var hasState = state && state.value && state.value.length > 0; var hasState = state && state.value && state.value.length > 0;
var hasZip = zip && zip.value && zip.value.length > 2; var hasZip = zip && zip.value && zip.value > 9999;
return hasFirst && hasLast && hasMobilePhone && hasEmail && hasAddress1 && hasCity && hasState && hasZip; return hasFirst && hasLast && hasMobilePhone && hasEmail && hasAddress1 && hasCity && hasState && hasZip;
} }