@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.cjs +0 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +0 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -8932,7 +8932,6 @@ var Sdk = class {
|
|
|
8932
8932
|
}
|
|
8933
8933
|
set marketDomain(value) {
|
|
8934
8934
|
if (typeof window === "undefined") return;
|
|
8935
|
-
if (core.Capacitor.isNativePlatform()) return;
|
|
8936
8935
|
if (value) {
|
|
8937
8936
|
sessionStorage.setItem("domain", value);
|
|
8938
8937
|
} else {
|
|
@@ -8941,7 +8940,6 @@ var Sdk = class {
|
|
|
8941
8940
|
}
|
|
8942
8941
|
get marketDomain() {
|
|
8943
8942
|
if (typeof window === "undefined") return null;
|
|
8944
|
-
if (core.Capacitor.isNativePlatform()) return null;
|
|
8945
8943
|
return sessionStorage.getItem("domain");
|
|
8946
8944
|
}
|
|
8947
8945
|
/*
|