@heycater/qualification-funnel 1.19.12 → 1.19.13

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/index.esm.js CHANGED
@@ -4273,7 +4273,8 @@ const useIsGb = () => {
4273
4273
  };
4274
4274
  const getIsGb = (query) => {
4275
4275
  if (typeof window !== "undefined") {
4276
- if (window.location.pathname.toLowerCase().includes("london")) {
4276
+ const pathname = window.location.pathname.toLowerCase();
4277
+ if (pathname.includes("en-uk") || pathname.includes("london")) {
4277
4278
  return true;
4278
4279
  }
4279
4280
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heycater/qualification-funnel",
3
- "version": "1.19.12",
3
+ "version": "1.19.13",
4
4
  "type": "module",
5
5
  "description": "Heycater embedded qualification funnel widget",
6
6
  "main": "dist/index.cjs.js",