@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/index.esm.js CHANGED
@@ -4273,7 +4273,11 @@ 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("london")) {
4278
+ return true;
4279
+ }
4280
+ if (pathname.includes("en-uk")) {
4277
4281
  return true;
4278
4282
  }
4279
4283
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heycater/qualification-funnel",
3
- "version": "1.19.4",
3
+ "version": "1.19.5",
4
4
  "type": "module",
5
5
  "description": "Heycater embedded qualification funnel widget",
6
6
  "main": "dist/index.cjs.js",