@heycater/qualification-funnel 1.19.4 → 1.19.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/heycater-funnel.iife.js +55 -55
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +5 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -4273,7 +4273,11 @@ const useIsGb = () => {
|
|
|
4273
4273
|
};
|
|
4274
4274
|
const getIsGb = (query) => {
|
|
4275
4275
|
if (typeof window !== "undefined") {
|
|
4276
|
-
|
|
4276
|
+
const pathname = window.location.pathname.toLowerCase();
|
|
4277
|
+
if (pathname.includes("london")) {
|
|
4278
|
+
return true;
|
|
4279
|
+
}
|
|
4280
|
+
if (pathname.includes("en-uk")) {
|
|
4277
4281
|
return true;
|
|
4278
4282
|
}
|
|
4279
4283
|
}
|