@innspel/react-native 0.2.0 → 0.2.1
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 +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -1712,8 +1712,8 @@ function Widget({
|
|
|
1712
1712
|
}
|
|
1713
1713
|
function fjernetKontekst(client, fjernede) {
|
|
1714
1714
|
const ut = {};
|
|
1715
|
-
for (const
|
|
1716
|
-
if (k !== "sdkVersion" &&
|
|
1715
|
+
for (const k of Object.keys(client.context)) {
|
|
1716
|
+
if (k !== "sdkVersion" && fjernede.includes(k)) ut[k] = void 0;
|
|
1717
1717
|
}
|
|
1718
1718
|
return ut;
|
|
1719
1719
|
}
|