fix: missing zip code when issue doc
All checks were successful
Spell Check / Spell Check with Typos (push) Successful in 5s

This commit is contained in:
Methapon2001 2025-06-11 10:25:19 +07:00
parent 47907f61ab
commit c430fc3c7a

View file

@ -353,6 +353,8 @@ function addressFull(addr: FullAddress, lang: "th" | "en" = "en") {
break; break;
} }
if (addr.subDistrict) fragments.push(addr.subDistrict.zipCode);
return fragments.join(" "); return fragments.join(" ");
} }