fix gps location lookup

This commit is contained in:
Matt Walsh 2020-09-04 14:06:07 -05:00
parent 01c58093f1
commit 17f35dbaaa

View file

@ -908,7 +908,7 @@ const btnGetGps_click = () => {
const ZipCode = data.address.Postal;
const City = data.address.City;
const State = states.getStateTwoDigitCode(data.address.Region);
const State = states.getTwoDigitCode(data.address.Region);
const Country = data.address.CountryCode;
const TwcQuery = `${ZipCode}, ${City}, ${State}, ${Country}`;