Fix missing country error

This commit is contained in:
Chris Payne
2025-07-08 21:13:02 -04:00
parent ca11a622b2
commit 928be20a92

View File

@@ -227,7 +227,6 @@ $SubmitBtn.Add_Click({
if (-not $city) { $missing += "City" } if (-not $city) { $missing += "City" }
if (-not $province) { $missing += "Province" } if (-not $province) { $missing += "Province" }
if (-not $postalCode) { $missing += "Postal Code" } if (-not $postalCode) { $missing += "Postal Code" }
if (-not $country) { $missing += "Country" }
if ($missing.Count -gt 0) { if ($missing.Count -gt 0) {
$msg = "Please fill in the following required fields:`n" + ($missing -join "`n") $msg = "Please fill in the following required fields:`n" + ($missing -join "`n")