@opexa/portal-sdk 0.57.18 → 0.57.20

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.js CHANGED
@@ -8927,7 +8927,6 @@ var Sdk = class {
8927
8927
  }
8928
8928
  set marketDomain(value) {
8929
8929
  if (typeof window === "undefined") return;
8930
- if (Capacitor.isNativePlatform()) return;
8931
8930
  if (value) {
8932
8931
  sessionStorage.setItem("domain", value);
8933
8932
  } else {
@@ -8936,7 +8935,6 @@ var Sdk = class {
8936
8935
  }
8937
8936
  get marketDomain() {
8938
8937
  if (typeof window === "undefined") return null;
8939
- if (Capacitor.isNativePlatform()) return null;
8940
8938
  return sessionStorage.getItem("domain");
8941
8939
  }
8942
8940
  /*