@plaidev/karte-action-sdk 1.1.185-28097907.4ee3401c → 1.1.186-28101835.a0da0d68

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.
@@ -2831,7 +2831,7 @@ const linkTo = (to, targetBlank = true) => () => {
2831
2831
  // # edge.js の retransmitter が送るのを待つ
2832
2832
  await sleep(450);
2833
2833
  }
2834
- const isRequiredWindowOpen = target === 'native' || targetBlank;
2834
+ const isRequiredWindowOpen = target === 'native' ? false : targetBlank;
2835
2835
  if (isRequiredWindowOpen) {
2836
2836
  window.open(to);
2837
2837
  }
package/dist/index.es.js CHANGED
@@ -2855,7 +2855,7 @@ const linkTo = (to, targetBlank = true) => () => {
2855
2855
  // # edge.js の retransmitter が送るのを待つ
2856
2856
  await sleep(450);
2857
2857
  }
2858
- const isRequiredWindowOpen = target === 'native' || targetBlank;
2858
+ const isRequiredWindowOpen = target === 'native' ? false : targetBlank;
2859
2859
  if (isRequiredWindowOpen) {
2860
2860
  window.open(to);
2861
2861
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plaidev/karte-action-sdk",
3
- "version": "1.1.185-28097907.4ee3401c",
3
+ "version": "1.1.186-28101835.a0da0d68",
4
4
  "author": "Plaid Inc.",
5
5
  "license": "Apache-2.0",
6
6
  "module": "./dist/index.es.js",