From 17f35dbaaa23a17a6b680251979074243388d277 Mon Sep 17 00:00:00 2001 From: Matt Walsh Date: Fri, 4 Sep 2020 14:06:07 -0500 Subject: [PATCH] fix gps location lookup --- server/scripts/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/scripts/index.js b/server/scripts/index.js index e9a4d96..4606693 100644 --- a/server/scripts/index.js +++ b/server/scripts/index.js @@ -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}`;