Skip to content

Commit

Permalink
test without breaking things
Browse files Browse the repository at this point in the history
  • Loading branch information
vhargrave committed Feb 29, 2024
1 parent fe5d2a5 commit b971b1f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libs/features/georoutingv2/georoutingv2.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ const geo2jsonp = (callback) => {
script.onerror = () => {
delete window[callbackName];
document.body.removeChild(script);
window.lana('geo2jsonp failed');
};

document.body.appendChild(script);
Expand Down Expand Up @@ -306,7 +307,7 @@ export default async function loadGeoRouting(

const urlLocale = locale.prefix.replace('/', '');
const storedInter = getCookie('international');
const storedLocale = storedInter === 'us' ? '' : storedInter;
const storedLocale = 'us';

const urlGeoData = json.georouting.data.find((d) => d.prefix === urlLocale);
if (!urlGeoData) return;
Expand Down

0 comments on commit b971b1f

Please sign in to comment.