@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 CHANGED
@@ -1712,8 +1712,8 @@ function Widget({
1712
1712
  }
1713
1713
  function fjernetKontekst(client, fjernede) {
1714
1714
  const ut = {};
1715
- for (const [k, v] of Object.entries(client.context)) {
1716
- if (k !== "sdkVersion" && !fjernede.includes(k)) ut[k] = v;
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
  }